mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-21 23:30:58 +00:00
18 lines
267 B
Plaintext
18 lines
267 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>
|
|
|
|
#include "common.h"
|
|
//#link "common.c"
|
|
|
|
void main(void) {
|
|
clrscr();
|
|
printf("\nHello World!\n");
|
|
getchar();
|
|
}
|