mirror of
https://github.com/pret/pokeyellow.git
synced 2026-05-23 19:36:31 -05:00
38 lines
568 B
NASM
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
|