ref: 71090c13497946b739cd13f80d31ee13b464e9e6 dir: /engine/random.asm/
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