diff options
Diffstat (limited to 'home/hm_moves.asm')
-rw-r--r-- | home/hm_moves.asm | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/home/hm_moves.asm b/home/hm_moves.asm index 082005186..c4233d094 100644 --- a/home/hm_moves.asm +++ b/home/hm_moves.asm @@ -1,4 +1,14 @@ -; HM moves can't be forgotten +; HM moves can't be forgotten + +IsHM:: ; 34df + cp HM01 + jr c, .NotHM + scf + ret +.NotHM: + and a + ret +; 34e7 IsHMMove:: ; 34e7 ld hl, .HMMoves |