1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-07 17:29:31 +00:00
8bitworkshop/presets/c64/skeleton.cc65

18 lines
267 B
Plaintext
Raw Normal View History

#include <conio.h>
2022-08-07 16:41:31 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <peekpoke.h>
#include <string.h>
#include <c64.h>
#include <cbm_petscii_charmap.h>
2022-08-11 20:27:20 +00:00
#include "common.h"
//#link "common.c"
void main(void) {
clrscr();
2022-08-07 16:41:31 +00:00
printf("\nHello World!\n");
getchar();
}