diff options
author | YamaArashi <shadow962@live.com> | 2016-06-11 17:48:24 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-06-11 17:50:20 -0700 |
commit | 7e112672b436afee27f1a5a0d6e7a5964e7829b2 (patch) | |
tree | 9176ffc5b6384a48eb32ea8f33ac97d1d67f6865 /engine/items/tms.asm | |
parent | f5983c0f813d3d908b6016db3ed866e4ca9437dc (diff) |
remove address comments
Diffstat (limited to 'engine/items/tms.asm')
-rwxr-xr-x | engine/items/tms.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/items/tms.asm b/engine/items/tms.asm index ff10d134..84770747 100755 --- a/engine/items/tms.asm +++ b/engine/items/tms.asm @@ -1,5 +1,5 @@ ; tests if mon [wcf91] can learn move [wMoveNum] -CanLearnTM: ; 122f0 (4:62f0) +CanLearnTM: ld a, [wcf91] ld [wd0b5], a call GetMonHeader @@ -28,7 +28,7 @@ CanLearnTM: ; 122f0 (4:62f0) ; converts TM/HM number in wd11e into move number ; HMs start at 51 -TMToMove: ; 1231d (4:631d) +TMToMove: ld a, [wd11e] dec a ld hl, TechnicalMachines |