diff options
Diffstat (limited to 'source/65c816.h')
-rw-r--r-- | source/65c816.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source/65c816.h b/source/65c816.h index 5b6184f..f180037 100644 --- a/source/65c816.h +++ b/source/65c816.h @@ -70,6 +70,7 @@ typedef union uint8_t l, h; } B; #endif + uint16_t W; } pair; @@ -77,14 +78,13 @@ typedef struct { uint8_t PB; uint8_t DB; - pair P; - pair A; - pair D; - pair S; - pair X; - pair Y; + pair P; + pair A; + pair D; + pair S; + pair X; + pair Y; uint16_t PC; } SRegisters; #endif - |