mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 19:29:37 +00:00
Fixed check for processor flags usage in case of PHP.
This commit is contained in:
parent
e2f950b15e
commit
6e0fb630d7
@ -476,6 +476,11 @@ int CE_UseLoadFlags (CodeEntry* E)
|
||||
}
|
||||
}
|
||||
|
||||
/* PHP will use all flags */
|
||||
if (E->OPC == OP65_PHP) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Anything else */
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user