mirror of
https://github.com/cc65/cc65.git
synced 2025-02-04 13:32:54 +00:00
Changed sim65's internal error codes from 9-bit values to 7-bit values.
Some shells truncate process return codes to 8 bits. And, the eigth bit often is used to show that a signal stopped the process.
This commit is contained in:
parent
d5c804f851
commit
fb0d09a277
@ -49,10 +49,10 @@
|
||||
|
||||
|
||||
|
||||
#define SIM65_ERROR 256
|
||||
#define SIM65_ERROR 0x7F
|
||||
/* Does not use EXIT_FAILURE because it may overlap with test results. */
|
||||
|
||||
#define SIM65_ERROR_TIMEOUT 257
|
||||
#define SIM65_ERROR_TIMEOUT 0x7E
|
||||
/* An error result for max CPU instructions exceeded. */
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user