diff options
Diffstat (limited to 'home/misc_32c8.asm')
-rw-r--r-- | home/misc_32c8.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/misc_32c8.asm b/home/misc_32c8.asm index 3eabb12..bb19d59 100644 --- a/home/misc_32c8.asm +++ b/home/misc_32c8.asm @@ -78,7 +78,7 @@ WaitPressedAny:: ; 369a CountSetBits:: ; 36b1 ; Count the number of bits set in b bytes at hl. -; Return to a, c, and wce37. +; Return to a, c, and wCountSetBitsResult. ld c, $0 .asm_36b3: ; 00:36b3 ld a, [hli] @@ -94,5 +94,5 @@ CountSetBits:: ; 36b1 dec b jr nz, .asm_36b3 ld a, c - ld [wce37], a + ld [wCountSetBitsResult], a ret |