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

13 lines
132 B
C
Raw Normal View History

2024-03-04 11:14:53 +01:00
void main(void)
{
static const char msg[] = "hello world\r\n";
char *str;
char ch;
str = msg;
while(1) {
ch = *str++;
}
}