mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 04:30:10 +00:00
Bugfix for the .ISMNEMONIC, .ISMNEM builtin function
This commit is contained in:
parent
a7676bdff5
commit
1c58b302d8
@ -496,7 +496,7 @@ static ExprNode* FuncIsMnemonic (void)
|
||||
/* Skip the name */
|
||||
NextTok ();
|
||||
|
||||
return GenLiteralExpr (Instr > 0);
|
||||
return GenLiteralExpr (Instr >= 0);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user