1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-10 13:29:50 +00:00

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

View File

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