1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-01 05:41:31 +00:00
8bitworkshop/presets/c64/skeleton.cc65
2019-12-21 11:54:26 -06:00

11 lines
156 B
Plaintext

#include <stdio.h>
#include <conio.h>
#include <c64.h>
#include <cbm_petscii_charmap.h>
void main(void) {
clrscr();
printf("\r\nHello World!\r\n");
}