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 /home/copy.asm | |
parent | f5983c0f813d3d908b6016db3ed866e4ca9437dc (diff) |
remove address comments
Diffstat (limited to 'home/copy.asm')
-rw-r--r-- | home/copy.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/home/copy.asm b/home/copy.asm index d073f54c..4f1d5017 100644 --- a/home/copy.asm +++ b/home/copy.asm @@ -1,4 +1,4 @@ -FarCopyData:: ; 009d (0:009d) +FarCopyData:: ; Copy bc bytes from a:hl to de. ld [wFarCopyDataSavedROMBank], a ld a, [H_LOADEDROMBANK] @@ -10,7 +10,7 @@ FarCopyData:: ; 009d (0:009d) call BankswitchCommon ret -CopyData:: ; 00b1 (0:00b1) +CopyData:: ; Copy bc bytes from hl to de. ld a,b and a @@ -33,7 +33,7 @@ CopyData:: ; 00b1 (0:00b1) jr nz, .copybytes ret -CopyVideoDataAlternate:: ; 00c8 (0:00c8) +CopyVideoDataAlternate:: ld a, [rLCDC] bit 7,a ; LCD enabled? jp nz, CopyVideoData ; if yes, then copy video data @@ -53,7 +53,7 @@ CopyVideoDataAlternate:: ; 00c8 (0:00c8) pop af jp FarCopyData -CopyVideoDataDoubleAlternate:: ; 00e3 (0:00e3) +CopyVideoDataDoubleAlternate:: ld a, [rLCDC] bit 7,a ; LCD enabled? jp nz, CopyVideoDataDouble ; if yes, then copy video data |