aboutsummaryrefslogtreecommitdiff
path: root/util/romcc/tests/simple_test58.c
blob: a5cd52171c9640953ea9f45995d384121ebcea42 (plain)
1
2
3
4
5
6
7
8
9
static void main(void)
{
	const char *str;
	unsigned char ch;
	str = "one\r\n";
	while((ch = *str++) != '\0') {
		__builtin_outb(ch, 0x3f0);
	}
}