From 7beb497d3aba7cd1bb34f2b1394bde80c1cd9807 Mon Sep 17 00:00:00 2001 From: xCrystal Date: Thu, 28 Dec 2017 13:23:44 +0100 Subject: Uppercase MACRO and EQU(S) according to the style guide --- macros/scripts/gfx_anims.asm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'macros/scripts/gfx_anims.asm') diff --git a/macros/scripts/gfx_anims.asm b/macros/scripts/gfx_anims.asm index a3fa710a0..dddc43082 100644 --- a/macros/scripts/gfx_anims.asm +++ b/macros/scripts/gfx_anims.asm @@ -1,6 +1,6 @@ ; pic + oam animations -frame: macro +frame: MACRO db \1 x = \2 if _NARG > 2 @@ -15,30 +15,30 @@ endc enum_start $fc enum delanim_command ; $fc -delanim: macro ; used for oam +delanim: MACRO ; used for oam db delanim_command endm enum dorepeat_command ; $fd -dorepeat: macro +dorepeat: MACRO db dorepeat_command db \1 ; # endm enum setrepeat_command ; $fe -setrepeat: macro +setrepeat: MACRO db setrepeat_command db \1 ; # endm enum endanim_command ; $ff -endanim: macro +endanim: MACRO db endanim_command endm __enum__ = $fe enum dorestart_command ; $fe -dorestart: macro ; used for oam +dorestart: MACRO ; used for oam db dorestart_command endm -- cgit v1.2.3 From 50fc9c3389ae8130d3670683f22f3e49555c57a3 Mon Sep 17 00:00:00 2001 From: xCrystal Date: Thu, 28 Dec 2017 22:31:16 +0100 Subject: endm -> ENDM --- macros/scripts/gfx_anims.asm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'macros/scripts/gfx_anims.asm') diff --git a/macros/scripts/gfx_anims.asm b/macros/scripts/gfx_anims.asm index dddc43082..943a000a9 100644 --- a/macros/scripts/gfx_anims.asm +++ b/macros/scripts/gfx_anims.asm @@ -10,35 +10,35 @@ x = x | (1 << (\3 + 1)) endr endc db x - endm +ENDM enum_start $fc enum delanim_command ; $fc delanim: MACRO ; used for oam db delanim_command - endm +ENDM enum dorepeat_command ; $fd dorepeat: MACRO db dorepeat_command db \1 ; # - endm +ENDM enum setrepeat_command ; $fe setrepeat: MACRO db setrepeat_command db \1 ; # - endm +ENDM enum endanim_command ; $ff endanim: MACRO db endanim_command - endm +ENDM __enum__ = $fe enum dorestart_command ; $fe dorestart: MACRO ; used for oam db dorestart_command - endm +ENDM -- cgit v1.2.3