diff options
author | mid-kid <esteve.varela@gmail.com> | 2020-09-12 23:58:44 +0200 |
---|---|---|
committer | mid-kid <esteve.varela@gmail.com> | 2020-09-12 23:58:44 +0200 |
commit | c8d5687ac4fa64396104da4f3f04f0594c38dc6c (patch) | |
tree | 7df330f23a1f8a7225e2820dccec24239ce23c40 /source/bank_02.asm | |
parent | 247b904a6bb10c7fdd5689c8380a4a0bdb30385c (diff) |
Dump strings, write tooling around them
Diffstat (limited to 'source/bank_02.asm')
-rw-r--r-- | source/bank_02.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/bank_02.asm b/source/bank_02.asm index 1e5d8d3..41844ab 100644 --- a/source/bank_02.asm +++ b/source/bank_02.asm @@ -28,7 +28,7 @@ text_char_print:: ; Check if we've reached the end of the string ld d, a and e - cp TX_EOM + cp TX_END jp z, farcall_ret push hl @@ -80,7 +80,7 @@ text_char_print:: ; Check if the next character is a terminator ld a, [hl+] and [hl] - cp TX_EOM + cp TX_END jp farcall_ret ; Returns: |