1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-07-01 23:29:33 +00:00
8bitworkshop/presets/c64/skeleton.cc65
2022-08-08 20:51:00 -05:00

15 lines
227 B
Plaintext

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