mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 16:34:07 +00:00
13 lines
137 B
C
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);
|
|
}
|