Save 8 bytes in the CGB boot ROM

This commit is contained in:
Jakub Kądziołka 2020-05-03 22:41:56 +02:00
parent bb37f8d2f0
commit 19126df7f4
No known key found for this signature in database
GPG Key ID: E315A75846131564
1 changed files with 7 additions and 13 deletions

View File

@ -984,14 +984,13 @@ BrightenColor:
and $1F
cp $1F
jr nz, .blueNotMaxed
res 0, c
dec c
.blueNotMaxed
; Is green maxed?
ld a, e
and $E0
cp $E0
jr nz, .greenNotMaxed
jr c, .greenNotMaxed
ld a, d
and $3
cp $3
@ -1007,18 +1006,13 @@ BrightenColor:
res 2, b
.redNotMaxed
; Add de to bc
push hl
ld h, d
ld l, e
add hl, bc
ld d, h
ld e, l
pop hl
; add de, bc
; ld [hli], de
ld a, e
add c
ld [hli], a
ld a, d
adc b
ld [hli], a
ret
@ -1155,7 +1149,7 @@ ReplaceColorInAllPalettes:
dec c
jr nz, .loop
ret
LoadDMGTilemap:
push af
call WaitFrame