1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-13 23:25:29 +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 */ /* Skip the name */
NextTok (); NextTok ();
return GenLiteralExpr (Instr > 0); return GenLiteralExpr (Instr >= 0);
} }