mirror of
https://github.com/ksherlock/wdc-utils.git
synced 2024-11-16 03:08:21 +00:00
29 lines
240 B
NASM
29 lines
240 B
NASM
|
|
||
|
;
|
||
|
; 2-segment, 2 module code.
|
||
|
;
|
||
|
include 'hello.macros'
|
||
|
|
||
|
macdelim {
|
||
|
|
||
|
module code
|
||
|
CODE
|
||
|
extern text
|
||
|
pea #^text
|
||
|
pea #text
|
||
|
_WriteLine
|
||
|
|
||
|
rtl
|
||
|
ends
|
||
|
endmod
|
||
|
|
||
|
module data
|
||
|
KDATA
|
||
|
public text
|
||
|
text
|
||
|
pstr {'hello, world'}
|
||
|
ends
|
||
|
endmod
|
||
|
|
||
|
|