diff options
author | 2016-05-30 16:06:38 +0200 | |
---|---|---|
committer | 2016-05-30 16:06:38 +0200 | |
commit | 5b7160418d322be3ec3b5e0be88602fdb0732eb3 (patch) | |
tree | 4048db55d71166e33c037960b85ae0adfe758952 /src/devices/bus/intv/slot.cpp | |
parent | 7dd07bdfae24c988900a9cd1de20f0adab7d0737 (diff) |
added recently released ms. pacman dump to intv.xml.
unfortunately it does not work... is Huygens still around
and willing to take a look? nw.
[thanks Anna Wu for pointing out the release]
Diffstat (limited to 'src/devices/bus/intv/slot.cpp')
-rw-r--r-- | src/devices/bus/intv/slot.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/intv/slot.cpp b/src/devices/bus/intv/slot.cpp index d502016fe76..3716333cbf8 100644 --- a/src/devices/bus/intv/slot.cpp +++ b/src/devices/bus/intv/slot.cpp @@ -396,8 +396,8 @@ bool intv_cart_slot_device::call_load() return load_fullpath(); else { - UINT16 offset[] = { 0x400, 0x2000, 0x4000, 0x4800, 0x5000, 0x6000, 0x7000, 0x8000, 0x9000, 0xa000, 0xb000, 0xc000, 0xd000, 0xe000, 0xf000}; - const char* region_name[] = {"0400", "2000", "4000", "4800", "5000", "6000", "7000", "8000", "9000", "A000", "B000", "C000", "D000", "E000", "F000"}; + UINT16 offset[] = { 0x400, 0x2000, 0x4000, 0x4800, 0x5000, 0x6000, 0x7000, 0x8000, 0x8800, 0x9000, 0xa000, 0xb000, 0xc000, 0xd000, 0xe000, 0xf000}; + const char* region_name[] = {"0400", "2000", "4000", "4800", "5000", "6000", "7000", "8000", "8800", "9000", "A000", "B000", "C000", "D000", "E000", "F000"}; const char *pcb_name = get_feature("slot"); bool extra_bank = false; @@ -416,7 +416,7 @@ bool intv_cart_slot_device::call_load() m_cart->rom_alloc(extra_bank ? 0x22000 : 0x20000, tag()); ROM = m_cart->get_rom_base(); - for (int i = 0; i < 15; i++) + for (int i = 0; i < 16; i++) { address = offset[i]; size = get_software_region_length(region_name[i]); |