shithub: pokered

ref: a9a687bd6e4b2d26564d7d41609daee6e1c59446
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