pokered/home/lcd.asm

26 lines
297 B
NASM
Raw Permalink Normal View History

2020-07-03 17:03:21 +00:00
DisableLCD::
xor a
ldh [rIF], a
ldh a, [rIE]
2020-07-03 17:03:21 +00:00
ld b, a
2024-09-24 14:48:10 +00:00
res rIE_VBLANK, a
ldh [rIE], a
2020-07-03 17:03:21 +00:00
.wait
ldh a, [rLY]
2020-07-03 17:03:21 +00:00
cp LY_VBLANK
jr nz, .wait
ldh a, [rLCDC]
2024-09-24 14:48:10 +00:00
and ~(1 << rLCDC_ENABLE)
ldh [rLCDC], a
2020-07-03 17:03:21 +00:00
ld a, b
ldh [rIE], a
2020-07-03 17:03:21 +00:00
ret
EnableLCD::
ldh a, [rLCDC]
2020-07-03 17:03:21 +00:00
set rLCDC_ENABLE, a
ldh [rLCDC], a
2020-07-03 17:03:21 +00:00
ret