Skip to content

Commit

Permalink
asm: Add .equiv define
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Ferry committed Sep 21, 2017
1 parent b953728 commit 7e693ed
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions parsers/asm.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ typedef enum {
OP_ENDP,
OP_ENDS,
OP_EQU,
OP_EQUIV,
OP_EQUAL,
OP_LABEL,
OP_MACRO,
Expand Down Expand Up @@ -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 },
Expand All @@ -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 },
Expand Down

0 comments on commit 7e693ed

Please sign in to comment.