mirror of
https://github.com/ksherlock/wdc-utils.git
synced 2024-11-15 12:06:57 +00:00
23 lines
162 B
NASM
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
|
|
|
|
|