diff options
Diffstat (limited to 'home/copy.asm')
-rw-r--r-- | home/copy.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/home/copy.asm b/home/copy.asm index 4972045ae..a4ca21f7f 100644 --- a/home/copy.asm +++ b/home/copy.asm @@ -72,8 +72,8 @@ GetFarByte:: ldh a, [hFarByte] ret -GetFarHalfword:: -; retrieve a halfword from a:hl, and return it in hl. +GetFarWord:: +; retrieve a word from a:hl, and return it in hl. ; bankswitch to new bank ldh [hTempBank], a ldh a, [hROMBank] @@ -81,7 +81,7 @@ GetFarHalfword:: ldh a, [hTempBank] rst Bankswitch - ; get halfword from new bank, put it in hl + ; get word from new bank, put it in hl ld a, [hli] ld h, [hl] ld l, a |