diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-01-09 15:16:05 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-01-09 15:16:05 -0500 |
commit | 7d3ea88611efbc2f9b903063e2816b1cae1bad35 (patch) | |
tree | 7475d498e4a1695aefd4a7e3356e735a51245d35 /home/copy.asm | |
parent | f773fd1dd89782eb1e92b850c7409a8d8be37651 (diff) |
Rename GetFarHalfword to GetFarWord
Fixes #796
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 |