diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2020-08-18 16:35:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-18 16:35:16 -0400 |
commit | 34ad9498ea399405ddc68aea91af9dd64319417c (patch) | |
tree | dc841f7adaaab2cdf88c0c0d6b81535c3b6ee0c0 /home/text.asm | |
parent | 5882c99f9d2581d0378a65c4559ae2ae6e0bc137 (diff) | |
parent | 4ea75afd563ef8304f7bb3f4662e229f156a9e6d (diff) |
Merge pull request #60 from mid-kid/master
Rub a dub dub, thanks for the grub
Diffstat (limited to 'home/text.asm')
-rw-r--r-- | home/text.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/home/text.asm b/home/text.asm index f7fadd5e..9d3428ac 100644 --- a/home/text.asm +++ b/home/text.asm @@ -614,7 +614,7 @@ TextCommands:: dw TextCommand_PROMPT_BUTTON ; TX_PROMPT_BUTTON dw TextCommand_SCROLL ; TX_SCROLL dw TextCommand_START_ASM ; TX_START_ASM - dw TextCommand_NUM ; TX_NUM + dw TextCommand_DECIMAL ; TX_DECIMAL dw TextCommand_PAUSE ; TX_PAUSE dw TextCommand_SOUND ; TX_SOUND_DEX_FANFARE_50_79 dw TextCommand_DOTS ; TX_DOTS @@ -758,8 +758,8 @@ TextCommand_START_ASM:: ; run assembly code jp hl -TextCommand_NUM:: -; print a number +TextCommand_DECIMAL:: +; print a decimal number ld a, [hli] ld e, a ld a, [hli] |