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