1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2025-01-16 11:30:33 +00:00
8bitworkshop/presets/pce/test_conio.c

15 lines
220 B
C
Raw Normal View History

2023-10-31 18:47:41 -05:00
#include <conio.h>
#include <peekpoke.h>
int tmp; // need at least 1 variable
int main() {
clrscr();
bgcolor(COLOR_BLUE);
textcolor(COLOR_WHITE);
cputs("\r\n*** HELLO WORLD! ***");
while (1) ;
return 0;
}