8bitworkshop/presets/pce/skeleton.cc65

15 lines
220 B
Plaintext
Raw Normal View History

2023-11-05 18:12:14 +00: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;
}