diff options
author | yenatch <yenatch@gmail.com> | 2016-04-18 08:01:12 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2016-04-18 08:01:12 -0400 |
commit | 7aef59841489ea449b9a34d424c681a4b48b88ab (patch) | |
tree | 72d46f1cc076564f62b11f5379960cd745a7fc9a /home/decompress.asm | |
parent | c5fb2c947ffcdd0ddd80319a24a6acbe828d9598 (diff) | |
parent | 5d94fb22ed0e4c9edfca506b80f50ef71fd78664 (diff) |
Merge pull request #338 from PikalaxALT/master
Battle anims, HP Bar anim
Diffstat (limited to 'home/decompress.asm')
-rw-r--r-- | home/decompress.asm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/home/decompress.asm b/home/decompress.asm index 13613f64a..373e9fe89 100644 --- a/home/decompress.asm +++ b/home/decompress.asm @@ -79,7 +79,7 @@ LZ_LONG_HI EQU %00000011 ld a, d ld [wLZAddress + 1], a -.Main +.Main: ld a, [hl] cp LZ_END ret z @@ -145,7 +145,7 @@ LZ_LONG_HI EQU %00000011 jr z, .Zero -.Literal +.Literal: ; Read literal data for bc bytes. .lloop dec c @@ -160,7 +160,7 @@ LZ_LONG_HI EQU %00000011 jr .lloop -.Iter +.Iter: ; Write the same byte for bc bytes. ld a, [hli] @@ -176,7 +176,7 @@ LZ_LONG_HI EQU %00000011 jr .iloop -.Alt +.Alt: ; Alternate two bytes for bc bytes. dec c jr nz, .anext1 @@ -206,7 +206,7 @@ LZ_LONG_HI EQU %00000011 jr .Main -.Zero +.Zero: ; Write 0 for bc bytes. xor a @@ -276,7 +276,7 @@ LZ_LONG_HI EQU %00000011 ; For now, it defaults to LZ_REPEAT. -.Repeat +.Repeat: ; Copy decompressed data for bc bytes. dec c jr nz, .rnext @@ -290,7 +290,7 @@ LZ_LONG_HI EQU %00000011 jr .Repeat -.Flip +.Flip: ; Copy bitflipped decompressed data for bc bytes. dec c jr nz, .fnext @@ -316,7 +316,7 @@ LZ_LONG_HI EQU %00000011 jr .Flip -.Reverse +.Reverse: ; Copy reversed decompressed data for bc bytes. dec c jr nz, .rvnext |