Files
Sepp J Morris 31738079c4 Upload
Digital Research
2020-11-06 18:50:37 +01:00

13 lines
137 B
C

#define OUTSTR 9
#define EXIT 0
char mesg[] = {"Hello, Steve\r\n$"};
_main()
{
__BDOS(OUTSTR,&mesg[0]);
}
exit()
{
__BDOS(EXIT,0L);
}