mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00

Adds Link's Awakening: DX. Fully imports and forks LADXR, with permission - https://github.com/daid/LADXR
17 lines
231 B
NASM
17 lines
231 B
NASM
MessageCopyString:
|
|
.loop:
|
|
ldi a, [hl]
|
|
ld [de], a
|
|
cp $ff
|
|
ret z
|
|
inc de
|
|
jr .loop
|
|
|
|
MessageAddSpace:
|
|
ld a, $20
|
|
ld [de], a
|
|
inc de
|
|
ld a, $ff
|
|
ld [de], a
|
|
ret
|