mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-28 23:49:20 +00:00
17 lines
251 B
Plaintext
17 lines
251 B
Plaintext
|
// example from https://github.com/steux/cc7800 - license: GPLv3
|
||
|
|
||
|
#include "conio.h"
|
||
|
|
||
|
char i;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
clrscr();
|
||
|
for (i = 0; i != 8; i++) {
|
||
|
textcolor(i);
|
||
|
gotoxy(0, i);
|
||
|
cputs("Hello World!");
|
||
|
}
|
||
|
while(1);
|
||
|
}
|