pokered/home/lcd.asm

26 lines
291 B
NASM
Raw 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
res 0, 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]
2020-07-03 17:03:21 +00:00
and $ff ^ rLCDC_ENABLE_MASK
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