Define appropriate constants as EQU

These constants are defined only once and shouldn't be redefined anyway.
This commit is contained in:
mid-kid
2019-05-12 16:46:40 +02:00
parent 649c8d38da
commit 476f9ba40d
4 changed files with 11 additions and 11 deletions

View File

@@ -14,7 +14,7 @@ endc
ENDM
enum: MACRO
\1 = __enum__
\1 EQU __enum__
__enum__ = __enum__ + __enumdir__
ENDM