mirror of
https://github.com/cc65/cc65.git
synced 2024-11-06 15:06:07 +00:00
27 lines
400 B
C
27 lines
400 B
C
// cl65 -t apple2 -C apple2-hgr.cfg hgrtest.c werner.s
|
|
|
|
#include <tgi.h>
|
|
#include <conio.h>
|
|
|
|
#pragma code-name (push, "LOWCODE")
|
|
|
|
void say (const char* text)
|
|
{
|
|
tgi_setcolor (TGI_COLOR_BLACK);
|
|
tgi_outtextxy (41, 33, text);
|
|
}
|
|
|
|
#pragma code-name (pop)
|
|
|
|
void main (void)
|
|
{
|
|
tgi_install (a2_hi_tgi);
|
|
tgi_init ();
|
|
cgetc ();
|
|
|
|
say ("Hi Dude !");
|
|
cgetc ();
|
|
|
|
tgi_uninstall ();
|
|
}
|