diff options
Diffstat (limited to 'src/devices/bus/megadrive/md_slot.cpp')
-rw-r--r-- | src/devices/bus/megadrive/md_slot.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/devices/bus/megadrive/md_slot.cpp b/src/devices/bus/megadrive/md_slot.cpp index d36ea109bf6..f338fc25d87 100644 --- a/src/devices/bus/megadrive/md_slot.cpp +++ b/src/devices/bus/megadrive/md_slot.cpp @@ -270,6 +270,7 @@ static const md_slot slot_list[] = { SMOUSE, "rom_smouse" }, { SOULBLAD, "rom_soulblad" }, { SQUIRRELK, "rom_squir" }, + { SRAM_ARG96, "rom_sram_arg96" }, { TEKKENSP, "rom_tekkesp" }, { TOPFIGHTER, "rom_topf" }, @@ -614,6 +615,7 @@ void base_md_cart_slot_device::setup_nvram() // These types only come from softlist loading case SEGA_SRAM: + case SRAM_ARG96: m_cart->m_nvram_start = 0x200000; m_cart->m_nvram_end = m_cart->m_nvram_start + get_software_region_length("sram") - 1; m_cart->nvram_alloc(m_cart->m_nvram_end - m_cart->m_nvram_start + 1); |