1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-12 17:30:50 +00:00

Merge pull request #2553 from sidneycadot/fix-remove-zregister

Sim65: removed ZR register from CPURegs type.
This commit is contained in:
Bob Andrews 2024-12-03 02:15:50 +01:00 committed by GitHub
commit 162bc6b305
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -60,7 +60,6 @@ struct CPURegs {
unsigned AC; /* Accumulator */
unsigned XR; /* X register */
unsigned YR; /* Y register */
unsigned ZR; /* Z register */
unsigned SR; /* Status register */
unsigned SP; /* Stackpointer */
unsigned PC; /* Program counter */