Specialized macros go with their data/code

This commit is contained in:
Remy Oukaour
2018-01-10 00:08:05 -05:00
parent 9af6d8d0f1
commit 8aa58dca9e
5 changed files with 316 additions and 323 deletions

View File

@@ -38,3 +38,12 @@ 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