Files
Z8C-Homebrew-Computer/OperatingSystem/cmon/main.c
Dennis Gunia d4af826223 restructure
2023-12-26 01:11:55 +01:00

13 lines
130 B
C

#include<stdio.h>
int main() {
printf("Hello World\n");
return 0;
}
void initSystem () {
__asm
di
__endasm;
}