shithub: pokecrystal

ref: 146fa1be515510dd6e7b9dea698aa453b0bc3920
dir: /home/double_speed.asm/

View raw version
; 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.

DoubleSpeed::
	ld hl, rKEY1
	bit 7, [hl]
	jr z, SwitchSpeed
	ret

NormalSpeed::
	ld hl, rKEY1
	bit 7, [hl]
	ret z

SwitchSpeed::
	set 0, [hl]
	xor a
	ld [rIF], a
	ld [rIE], a
	ld a, $30
	ld [rJOYP], a
	stop ; rgbasm adds a nop after this instruction by default
	ret