shithub: pokered

ref: 929c7f6f7d62b4b22e1de2003b3df1943268321c
dir: /engine/random.asm/

View raw version
Random_::
; Generate a random 16-bit value.
	ld a, [rDIV]
	ld b, a
	ld a, [hRandomAdd]
	adc b
	ld [hRandomAdd], a
	ld a, [rDIV]
	ld b, a
	ld a, [hRandomSub]
	sbc b
	ld [hRandomSub], a
	ret