Subversion Repositories Kolibri OS

Rev

Rev 8193 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8193 Rev 8470
Line 91... Line 91...
91
void output_debug_string(const char *s)
91
void output_debug_string(const char *s)
92
{
92
{
93
	unsigned int i = 0;
93
	unsigned int i = 0;
94
	while(*(s + i))
94
	while(*(s + i))
95
	{
95
	{
96
		asm volatile ("int $0x40"::"a"(63), "b"(1), "c"(*(s + i)));
96
		__asm__ __volatile__ ("int $0x40"::"a"(63), "b"(1), "c"(*(s + i)));
97
		i++;
97
		i++;
98
	}
98
	}
99
}
99
}
Line 100... Line 100...
100
 
100