mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 18:30:50 +12:00
13 lines
167 B
NASM
13 lines
167 B
NASM
Random::
|
|
; Return a random number in a.
|
|
; For battles, use BattleRandom.
|
|
push hl
|
|
push de
|
|
push bc
|
|
farcall Random_
|
|
ldh a, [hRandomAdd]
|
|
pop bc
|
|
pop de
|
|
pop hl
|
|
ret
|