summaryrefslogtreecommitdiff
path: root/opcode.h
diff options
context:
space:
mode:
Diffstat (limited to 'opcode.h')
-rw-r--r--opcode.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/opcode.h b/opcode.h
index c36daf8..833bfe5 100644
--- a/opcode.h
+++ b/opcode.h
@@ -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. */
};