Python-Cpu-Emulator/main.c

13 lines
131 B
C
Raw Permalink Normal View History

2024-12-24 05:17:07 +00:00
int main()
{
char *msg = "Welcome!\n";
print_string(msg);
while (1) // Not implemented
{
}
return 0;
}