diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-04-04 15:19:43 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-04-04 15:32:18 -0400 |
commit | 3cdfac7994f501cb1d8fbcdf9c64e9ce258afe30 (patch) | |
tree | 8cb55d6ab3931f449d7da3df729f4bd597ca0909 /macros/enum.asm | |
parent | 0ee9d7a48baed7e9388e7e377b5eab5b4f795688 (diff) |
Move, comment, and simplify some macro definitions
Diffstat (limited to 'macros/enum.asm')
-rw-r--r-- | macros/enum.asm | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/macros/enum.asm b/macros/enum.asm index 41d1da167..8fe5b5343 100644 --- a/macros/enum.asm +++ b/macros/enum.asm @@ -41,11 +41,3 @@ shift_const: MACRO \1 EQU (1 << const_value) const_value = const_value + 1 ENDM - -; Enumerate strings - -define: MACRO -if !DEF(\1) -\1 EQUS \2 -endc -ENDM |