Update home.asm

Updated a few labels.
This commit is contained in:
inthesomeday000 2025-11-25 23:05:48 -05:00 committed by GitHub
parent 463a29e383
commit 69cf8f7621
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2196,19 +2196,19 @@ MultiplyBbyCSigned:
xor c
ldh [hSignedMathSignBuffer], a
bit 7, b
jr z, .asm_20be
jr z, .abs_val_check_c
ld a, b
cpl
inc a
ld b, a
.asm_20be
.abs_val_check_c
bit 7, c
jr z, .asm_20c6
jr z, .multiplication_core
ld a, c
cpl
inc a
ld c, a
.asm_20c6
.multiplication_core
; b*c == (b**2 + c**2 - (b - c)**2) / 2
push de
push hl