Add a macro for enumeration.
"enum" is like "const" but uses variables instead. This might not be desired. It has been moved to the top of macros.asm so that included macros can be enumerated.
This commit is contained in:
13
macros.asm
13
macros.asm
@@ -1,3 +1,5 @@
|
||||
INCLUDE "macros/enum.asm"
|
||||
|
||||
INCLUDE "macros/event.asm"
|
||||
INCLUDE "macros/sound.asm"
|
||||
INCLUDE "macros/text.asm"
|
||||
@@ -113,17 +115,6 @@ endanim: MACRO
|
||||
ENDM
|
||||
|
||||
|
||||
; Constant enumeration
|
||||
|
||||
const_def: MACRO
|
||||
const_value SET 0
|
||||
ENDM
|
||||
|
||||
const: MACRO
|
||||
\1 EQU const_value
|
||||
const_value SET const_value + 1
|
||||
ENDM
|
||||
|
||||
|
||||
sine_wave: MACRO
|
||||
; \1: amplitude
|
||||
|
Reference in New Issue
Block a user