summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/emu/memory.c2
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