diff options
Diffstat (limited to 'src/devices/bus/msx_slot/slot.cpp')
-rw-r--r-- | src/devices/bus/msx_slot/slot.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/devices/bus/msx_slot/slot.cpp b/src/devices/bus/msx_slot/slot.cpp index 345cf6e0a5c..3b826c87fa2 100644 --- a/src/devices/bus/msx_slot/slot.cpp +++ b/src/devices/bus/msx_slot/slot.cpp @@ -13,12 +13,9 @@ pages; and multiple pieces of rom/ram/components can occur in a single slot. #include "emu.h" #include "slot.h" -msx_internal_slot_interface::msx_internal_slot_interface(const machine_config &mconfig, device_t &device) - : m_mem_space(device, finder_base::DUMMY_TAG, -1) - , m_io_space(device, finder_base::DUMMY_TAG, -1) - , m_start_address(0) +msx_internal_slot_interface::msx_internal_slot_interface() + : m_start_address(0) , m_size(0) , m_end_address(0) { - (void)mconfig; } |