blob: 9ba1e61c920e9e0d904ade4f07e188379fb65795 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
; pic + oam animations
frame: MACRO
db \1
x = \2
IF _NARG > 2
REPT _NARG - 2
x |= \3 << 1
shift
ENDR
ENDC
db x
ENDM
const_def -1, -1
const endanim_command ; $ff
endanim: MACRO
db endanim_command
ENDM
const dorestart_command ; $fe
dorestart: MACRO
db dorestart_command
ENDM
const dorepeat_command ; $fd
dorepeat: MACRO
db dorepeat_command
db \1 ; command offset to jump to
ENDM
const delanim_command ; $fc
delanim: MACRO
; Removes the object from the screen, as opposed to `endanim` which just stops all motion
db delanim_command
ENDM
|