1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-01 05:41:31 +00:00
8bitworkshop/presets/atari8-800xl/skeleton.cc65

16 lines
272 B
Plaintext
Raw Normal View History

#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) {
}
}