coreboot-libre-fam15h-rdimm/util/romcc/tests/simple_test58.c

10 lines
146 B
C
Raw Normal View History

2024-03-04 11:14:53 +01:00
static void main(void)
{
const char *str;
unsigned char ch;
str = "one\r\n";
while((ch = *str++) != '\0') {
__builtin_outb(ch, 0x3f0);
}
}