mirror of
https://github.com/ksherlock/wdc-utils.git
synced 2024-12-12 19:30:38 +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
|
|
|
|
|