mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-15 14:07:16 +00:00
15 lines
220 B
C
15 lines
220 B
C
|
|
#include <conio.h>
|
|
#include <peekpoke.h>
|
|
|
|
int tmp; // need at least 1 variable
|
|
|
|
int main() {
|
|
clrscr();
|
|
bgcolor(COLOR_BLUE);
|
|
textcolor(COLOR_WHITE);
|
|
cputs("\r\n*** HELLO WORLD! ***");
|
|
while (1) ;
|
|
return 0;
|
|
}
|