mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-04 20:05:57 +00:00
11 lines
156 B
Plaintext
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");
|
|
}
|