summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/msx_slot/slot.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/msx_slot/slot.cpp')
-rw-r--r--src/devices/bus/msx_slot/slot.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/devices/bus/msx_slot/slot.cpp b/src/devices/bus/msx_slot/slot.cpp
index 3b826c87fa2..345cf6e0a5c 100644
--- a/src/devices/bus/msx_slot/slot.cpp
+++ b/src/devices/bus/msx_slot/slot.cpp
@@ -13,9 +13,12 @@ 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()
- : m_start_address(0)
+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)
, m_size(0)
, m_end_address(0)
{
+ (void)mconfig;
}