pokegold-spaceworld/home/lcd.asm
luckytyphlosion e1659ecd41 Introduce linkerscript.
Addresses of sections will now be added to the linkerscript via `org`, and the section name will be the path/to/file. If there is more than one section in the file, then add a @SectionName after the path/to/file to describe the section.
2018-07-03 17:07:05 -04:00

80 lines
1.0 KiB
NASM

INCLUDE "constants.asm"
SECTION "home/lcd.asm", ROM0
LCD:: ; 03ae
push af
ldh a, [hLCDCPointer]
and a
jr z, .done
push hl
rla
jr c, .try_hide_sprites
ld a, [rLY]
ld l, a
ld h, HIGH(wLYOverrides)
ld h, [hl]
ldh a, [hLCDCPointer]
ld l, a
ld a, h
ld h, $FF
ld [hl], a
pop hl
pop af
reti
.try_hide_sprites
ld a, [rLY]
cp $80
jr nz, .dont_hide
ld hl, rLCDC
res 1, [hl]
.dont_hide
pop hl
pop af
reti
; Seems unused?
ldh a, [hSCX]
ld [rSCX], a
ldh a, [hSCY]
ld [rSCY], a
pop hl
.done
pop af
reti
; 0:3e1
; TODO: can this be done using `sine_table`?
db 0, 1, 2, 2, 3, 3, 4, 4, 4, 4, 4, 3, 3, 2, 2, 1, 0, -1, -2, -2, -3, -3, -4, -4, -4, -4, -4, -3, -3, -2, -2, -1
DisableLCD:: ; 0401
ld a, [rLCDC]
bit 7, a
ret z
xor a
ld [rIF], a
ld a, [rIE]
ld b, a
res 0, a
ld [rIE], a
.wait
ld a, [rLY]
cp LY_VBLANK + 1
jr nz, .wait
ld a, [rLCDC]
and $7f ; Shut LCD down
ld [rLCDC], a
xor a
ld [rIF], a
ld a, b
ld [rIE], a
ret
EnableLCD:: ; 0423
ld a, [rLCDC]
set 7, a
ld [rLCDC], a
ret