aboutsummaryrefslogtreecommitdiff
path: root/asm/lexer.h
diff options
context:
space:
mode:
Diffstat (limited to 'asm/lexer.h')
-rw-r--r--asm/lexer.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/asm/lexer.h b/asm/lexer.h
index 432acaf..3434b72 100644
--- a/asm/lexer.h
+++ b/asm/lexer.h
@@ -17,9 +17,10 @@
typedef enum TokenType
{
- TOKEN_PP_CONST,
- TOKEN_PP_END,
- TOKEN_PP_REFERENCE,
+ TOKEN_PP_CONST, // %const(<symbol>)...
+ TOKEN_PP_USE, // %use <string>
+ TOKEN_PP_END, // %end
+ TOKEN_PP_REFERENCE, // $<symbol>
TOKEN_GLOBAL,
TOKEN_STAR,
TOKEN_LITERAL_NUMBER,