mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
a2e8f078a4
Fixes #876
29 lines
446 B
NASM
29 lines
446 B
NASM
MACRO frame
|
|
if _NARG <= 2
|
|
db \1 ; index
|
|
db \2 ; duration
|
|
else
|
|
; LEGACY: Support for the old name of "oamanim"
|
|
oamanim \#
|
|
endc
|
|
ENDM
|
|
|
|
const_def -1, -1
|
|
|
|
const endanim_command ; $ff
|
|
MACRO endanim
|
|
db endanim_command
|
|
ENDM
|
|
|
|
const setrepeat_command ; $fe
|
|
MACRO setrepeat
|
|
db setrepeat_command
|
|
db \1 ; amount of times to repeat
|
|
ENDM
|
|
|
|
const dorepeat_command ; $fd
|
|
MACRO dorepeat
|
|
db dorepeat_command
|
|
db \1 ; command offset to jump to
|
|
ENDM
|