diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-01-10 14:31:38 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-01-10 14:31:38 -0600 |
commit | deb5bf89ae604a2b7d6ac942e77ade7d6b962b05 (patch) | |
tree | 3134b1c00641b38766b0d1f764879e3a66ba39bb | |
parent | c52d1a1e873f5e45d79b6371f45c540ac6d4b12e (diff) |
call $00b5 -> call CopyData
hg-commit-id: e6a487cf2186
-rw-r--r-- | extras/gbz80disasm.py | 1 | ||||
-rw-r--r-- | pokered.asm | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/extras/gbz80disasm.py b/extras/gbz80disasm.py index 7b12f4a4..cf4df80a 100644 --- a/extras/gbz80disasm.py +++ b/extras/gbz80disasm.py @@ -551,6 +551,7 @@ asm_commands = { "3e2e": "GiveItem", "2f9e": "GetMonName", "3e6d": "Predef", #library of pre-defined asm routines + "00b5": "CopyData", } def random_asm_label(): diff --git a/pokered.asm b/pokered.asm index bd949069..c6b1ca3e 100644 --- a/pokered.asm +++ b/pokered.asm @@ -1073,7 +1073,7 @@ GetMonName: ; 0x2f9e ld de, $cd6d push de ld bc, $000a - call $00b5 + call CopyData ld hl, $cd77 ld [hl], $50 pop de @@ -25117,7 +25117,7 @@ Route2GateText1: ; 0x5d5db ld hl, $cd6d ld de, $cc5b ld bc, $000d - call $00b5 + call CopyData ld a, $62 call Predef ldh a, [$db] |