More comments for macros

This commit is contained in:
Remy Oukaour
2017-12-15 00:38:52 -05:00
parent 28aec67f6e
commit fecc5c339a
10 changed files with 687 additions and 687 deletions

View File

@@ -14,31 +14,31 @@ endc
enum_start $fc
enum delanim_command ; fc
enum delanim_command ; $fc
delanim: macro ; used for oam
db delanim_command
endm
enum dorepeat_command ; fd
enum dorepeat_command ; $fd
dorepeat: macro
db dorepeat_command
db \1 ; #
endm
enum setrepeat_command ; fe
enum setrepeat_command ; $fe
setrepeat: macro
db setrepeat_command
db \1 ; #
endm
enum endanim_command ; ff
enum endanim_command ; $ff
endanim: macro
db endanim_command
endm
__enum__ = $fe
enum dorestart_command ; fe
enum dorestart_command ; $fe
dorestart: macro ; used for oam
db dorestart_command
endm