wdc-utils/samples/hello2.asm

23 lines
162 B
NASM

;
; 2-segment code.
;
include 'hello.macros'
macdelim {
CODE
pea #^text
pea #text
_WriteLine
rtl
ends
KDATA
text
pstr {'hello, world'}
ends