diff options
Diffstat (limited to 'src/emu/bus/vc4000/slot.c')
| -rw-r--r-- | src/emu/bus/vc4000/slot.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/emu/bus/vc4000/slot.c b/src/emu/bus/vc4000/slot.c index b9524565f77..43fbfa992e2 100644 --- a/src/emu/bus/vc4000/slot.c +++ b/src/emu/bus/vc4000/slot.c @@ -169,9 +169,9 @@ bool vc4000_cart_slot_device::call_load() seterror(IMAGE_ERROR_UNSPECIFIED, "Image extends beyond the expected size for a VC4000 cart"); return IMAGE_INIT_FAIL; } - + m_cart->rom_alloc(size, tag()); - + if (software_entry() == NULL) fread(m_cart->get_rom_base(), size); else @@ -236,7 +236,7 @@ void vc4000_cart_slot_device::get_default_card_software(astring &result) type = VC4000_CHESS2; else if (size > 0x0800) // some 4k roms have 1k of mirrored ram type = VC4000_RAM1K; - + slot_string = vc4000_get_slot(type); //printf("type: %s\n", slot_string); @@ -294,5 +294,3 @@ WRITE8_MEMBER(vc4000_cart_slot_device::write_ram) if (m_cart) m_cart->write_ram(space, offset, data); } - - |
