diff options
author | 2014-10-04 21:56:58 +0000 | |
---|---|---|
committer | 2014-10-04 21:56:58 +0000 | |
commit | 781bdc9af77e17255c895a20c9b5fb7ab97a5e02 (patch) | |
tree | 044f300584c60e40b43dd2a0769b01ed6aec02df | |
parent | 4e33d5126c2053c9220a313e9ae6defecfc3a2b0 (diff) |
fix winrun missing 3D
(this changes STATIC_COUNT from 0x100 to 0xff)
-rw-r--r-- | src/emu/memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/memory.c b/src/emu/memory.c index c5ae554674a..c7440daa24b 100644 --- a/src/emu/memory.c +++ b/src/emu/memory.c @@ -204,7 +204,7 @@ enum { STATIC_INVALID = 0, // invalid - should never be used STATIC_BANK1 = 1, // first memory bank - STATIC_BANKMAX = 252, // last memory bank + STATIC_BANKMAX = 0xfb, // last memory bank STATIC_NOP, // NOP - reads = unmapped value; writes = no-op STATIC_UNMAP, // unmapped - same as NOP except we log errors STATIC_WATCHPOINT, // watchpoint - used internally |