wdc-utils/samples/hello2.asm
Kelvin Sherlock 14eb08e05e more samples.
2017-01-04 13:37:09 -05:00

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