pokeyellow/macros/scripts/gfx_anims.asm
vulcandth c1ef7b7597
RGBDS syntax updates (#86)
New MACRO and DEF syntax
2022-06-06 17:25:34 -04:00

38 lines
568 B
NASM

; pic + oam animations
MACRO frame
db \1
DEF x = \2
IF _NARG > 2
REPT _NARG - 2
DEF x |= \3 << 1
shift
ENDR
ENDC
db x
ENDM
const_def -1, -1
const endanim_command ; $ff
MACRO endanim
db endanim_command
ENDM
const dorestart_command ; $fe
MACRO dorestart
db dorestart_command
ENDM
const dorepeat_command ; $fd
MACRO dorepeat
db dorepeat_command
db \1 ; command offset to jump to
ENDM
const delanim_command ; $fc
MACRO delanim
; Removes the object from the screen, as opposed to `endanim` which just stops all motion
db delanim_command
ENDM