mirror of
https://github.com/ksherlock/wdc-utils.git
synced 2024-12-12 19:30:38 +00:00
24 lines
216 B
Plaintext
24 lines
216 B
Plaintext
|
|
_WriteLine macro
|
|
ldx #$1a0c
|
|
jsl $e10000
|
|
endm
|
|
|
|
cstr macro str
|
|
db str
|
|
db 0
|
|
endm
|
|
|
|
pstr macro str
|
|
db end#-start#
|
|
start#
|
|
db str
|
|
end#
|
|
endm
|
|
|
|
gsstr macro str
|
|
dw end#-start#
|
|
start#
|
|
db str
|
|
end#
|
|
endm |