Uppercase MACRO and EQU(S) according to the style guide

This commit is contained in:
xCrystal
2017-12-28 13:23:44 +01:00
parent 9457679af8
commit 7beb497d3a
33 changed files with 425 additions and 425 deletions

View File

@@ -1,6 +1,6 @@
; Enumerate variables
enum_start: macro
enum_start: MACRO
if _NARG >= 1
__enum__ = \1
else
@@ -13,12 +13,12 @@ __enumdir__ = +1
endc
endm
enum: macro
enum: MACRO
\1 = __enum__
__enum__ = __enum__ + __enumdir__
endm
enum_set: macro
enum_set: MACRO
__enum__ = \1
endm