ref: 462088a25c971fc8989e5bf56260c2365e258053 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