From 7e693edc26712b0b03e98aef63ef7d5b90a07dbc Mon Sep 17 00:00:00 2001 From: Mark Ferry Date: Thu, 21 Sep 2017 16:57:55 +0100 Subject: [PATCH] asm: Add .equiv define --- parsers/asm.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/parsers/asm.c b/parsers/asm.c index 8c06d7c3fb..c47ca0f84d 100644 --- a/parsers/asm.c +++ b/parsers/asm.c @@ -43,6 +43,7 @@ typedef enum { OP_ENDP, OP_ENDS, OP_EQU, + OP_EQUIV, OP_EQUAL, OP_LABEL, OP_MACRO, @@ -90,6 +91,7 @@ static const keywordTable AsmKeywords [] = { { "endp", OP_ENDP }, { "ends", OP_ENDS }, { "equ", OP_EQU }, + { "equiv", OP_EQUIV }, { "label", OP_LABEL }, { "macro", OP_MACRO }, { ":=", OP_COLON_EQUAL }, @@ -115,6 +117,7 @@ static const opKind OpKinds [] = { { OP_ENDP, K_NONE }, { OP_ENDS, K_NONE }, { OP_EQU, K_DEFINE }, + { OP_EQUIV, K_DEFINE }, { OP_EQUAL, K_DEFINE }, { OP_LABEL, K_LABEL }, { OP_MACRO, K_MACRO },