mirror of
https://github.com/ksherlock/wdc-utils.git
synced 2024-11-17 10:06:54 +00:00
21 lines
149 B
NASM
21 lines
149 B
NASM
|
|
||
|
;
|
||
|
; 1-segment code.
|
||
|
;
|
||
|
include 'hello.macros'
|
||
|
|
||
|
macdelim {
|
||
|
|
||
|
CODE
|
||
|
pea #^text
|
||
|
pea #text
|
||
|
_WriteLine
|
||
|
|
||
|
rtl
|
||
|
|
||
|
text
|
||
|
pstr {'hello, world'}
|
||
|
ends
|
||
|
|
||
|
|