diff options
Diffstat (limited to 'opcode.h')
-rw-r--r-- | opcode.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -29,10 +29,10 @@ union reg { struct sux { union reg ps; /* The processor status register. */ - uint64_t a[8], b[8], y[8], x[8]; /* Registers A, B, X, and Y. */ - uint64_t pc[8]; /* Program counter. */ - uint16_t sp[8]; /* Stack pointer. */ - uint16_t stk_st[8]; /* Starting address of each threads stack. */ + uint64_t a, b, y, x; /* Registers A, B, X, and Y. */ + uint64_t pc; /* Program counter. */ + uint16_t sp; /* Stack pointer. */ + uint16_t stk_st; /* Starting address of each threads stack. */ uint8_t crt; /* Current running threads. */ }; |