Bugfix for the .ISMNEMONIC, .ISMNEM builtin function

This commit is contained in:
mvax 2023-05-05 12:31:19 -04:00
parent a7676bdff5
commit 1c58b302d8
1 changed files with 1 additions and 1 deletions

View File

@ -496,7 +496,7 @@ static ExprNode* FuncIsMnemonic (void)
/* Skip the name */
NextTok ();
return GenLiteralExpr (Instr > 0);
return GenLiteralExpr (Instr >= 0);
}