pokecrystal-board/home/double_speed.asm

28 lines
489 B
NASM
Raw Normal View History

; The CGB hardware introduces Double Speed Mode.
; While active, the clock speed is doubled.
; The hardware can switch between normal speed
; and double speed at any time, but LCD output
; collapses during the switch.
2018-06-24 07:09:41 -07:00
DoubleSpeed::
ld hl, rKEY1
bit 7, [hl]
jr z, SwitchSpeed
ret
2018-06-24 07:09:41 -07:00
NormalSpeed::
ld hl, rKEY1
bit 7, [hl]
ret z
2018-06-24 07:09:41 -07:00
SwitchSpeed::
set 0, [hl]
xor a
ldh [rIF], a
ldh [rIE], a
ld a, $30
ldh [rJOYP], a
stop ; rgbasm adds a nop after this instruction by default
ret