diff options
author | mid-kid <esteve.varela@gmail.com> | 2018-06-25 02:10:37 +0200 |
---|---|---|
committer | mid-kid <esteve.varela@gmail.com> | 2018-06-25 02:10:37 +0200 |
commit | 5efce10789bc8291ca5517bdeaacab95459b3fdb (patch) | |
tree | 94eaaa56e9c7d869dd6ffe86be1abc0af3ccc2b9 /engine/gfx | |
parent | 0cbe04da44744073c4c164df970b1571b1fda1a6 (diff) |
Remove even more address comments
That should be all of them this time
Diffstat (limited to 'engine/gfx')
-rw-r--r-- | engine/gfx/color.asm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/engine/gfx/color.asm b/engine/gfx/color.asm index 3be670d75..9a3b4f8ef 100644 --- a/engine/gfx/color.asm +++ b/engine/gfx/color.asm @@ -1128,7 +1128,7 @@ SGBBorder_YetMorePalPushing: ld [rBGP], a ret -CopyData: ; 0x9a52 +CopyData: ; copy bc bytes of data from hl to de .loop ld a, [hli] @@ -1139,9 +1139,8 @@ CopyData: ; 0x9a52 or b jr nz, .loop ret -; 0x9a5b -ClearBytes: ; 0x9a5b +ClearBytes: ; clear bc bytes of data starting from de .loop xor a @@ -1152,9 +1151,8 @@ ClearBytes: ; 0x9a5b or b jr nz, .loop ret -; 0x9a64 -DrawDefaultTiles: ; 0x9a64 +DrawDefaultTiles: ; Draw 240 tiles (2/3 of the screen) from tiles in VRAM hlbgcoord 0, 0 ; BG Map 0 ld de, BG_MAP_WIDTH - SCREEN_WIDTH @@ -1172,7 +1170,6 @@ DrawDefaultTiles: ; 0x9a64 dec c jr nz, .line ret -; 0x9a7a SGBDelayCycles: ld de, 7000 |