diff options
author | Michael Pavone <pavone@retrodev.com> | 2016-10-06 09:35:35 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2016-10-06 09:35:35 -0700 |
commit | cab3bd73c9a9110b5c70f7f692b1afeacc9858b9 (patch) | |
tree | ec939202d1718c605c9e95fa105cf0e4f27b98b9 /jaguar.h | |
parent | 986b3641a1110e7dd1994c76ecb592420877f8f5 (diff) |
Byteswap ROMs in jaguar ROM loader. Handle switching memory map from writes to memcon1. Fix some typos in error messages
Diffstat (limited to 'jaguar.h')
-rw-r--r-- | jaguar.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -12,7 +12,8 @@ typedef struct { uint16_t *cart; uint32_t bios_size; uint32_t cart_size; - uint32_t memcon; + uint32_t memcon1; + uint32_t memcon2; uint16_t write_latch; uint8_t write_pending; @@ -25,6 +26,7 @@ typedef struct { uint16_t *write_line_buffer; uint16_t *read_line_buffer; + uint8_t memcon_written; } jaguar_context; |