ref: 1df1e9181e2f3d95f57c98e0ea6e38ce4261fb2a 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