1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-05-28 23:41:32 +00:00
8bitworkshop/presets/atari8-800/skeleton.cc65
2022-08-30 19:37:30 -05:00

16 lines
272 B
Plaintext

#include <conio.h>
#include <atari.h>
void main() {
// clear the screen
clrscr();
// position the cursor, output text
gotoxy(0,1);
// print some text
cputs("Hello Atari 8-bit World!\r\n");
// cartridge ROMs do not exit, so loop forever
while (1) {
}
}