pokered/home/copy_string.asm

14 lines
213 B
NASM
Raw Permalink Normal View History

2021-08-28 21:02:20 +00:00
; copies a string from de to wStringBuffer
CopyToStringBuffer::
ld hl, wStringBuffer
; fall through
2021-08-28 21:02:20 +00:00
; copies a string from de to hl
CopyString::
ld a, [de]
inc de
ld [hli], a
cp "@"
jr nz, CopyString
ret