pokecrystal-board/macros/scripts/gfx_anims.asm

45 lines
583 B
NASM
Raw Normal View History

; pic + oam animations
2017-12-13 21:36:24 -08:00
frame: MACRO
2017-12-13 21:36:24 -08:00
db \1
x = \2
if _NARG > 2
rept _NARG +- 2
x = x | (1 << (\3 + 1))
shift
endr
endc
db x
endm
enum_start $fc
2017-12-14 21:38:52 -08:00
enum delanim_command ; $fc
delanim: MACRO ; used for oam
2017-12-13 21:36:24 -08:00
db delanim_command
endm
2017-12-14 21:38:52 -08:00
enum dorepeat_command ; $fd
dorepeat: MACRO
2017-12-13 21:36:24 -08:00
db dorepeat_command
db \1 ; #
endm
2017-12-14 21:38:52 -08:00
enum setrepeat_command ; $fe
setrepeat: MACRO
2017-12-13 21:36:24 -08:00
db setrepeat_command
db \1 ; #
endm
2017-12-14 21:38:52 -08:00
enum endanim_command ; $ff
endanim: MACRO
2017-12-13 21:36:24 -08:00
db endanim_command
endm
__enum__ = $fe
2017-12-14 21:38:52 -08:00
enum dorestart_command ; $fe
dorestart: MACRO ; used for oam
2017-12-13 21:36:24 -08:00
db dorestart_command
endm