summaryrefslogtreecommitdiffstats
path: root/src/mame/machine/c117.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/c117.cpp')
-rw-r--r--src/mame/machine/c117.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/machine/c117.cpp b/src/mame/machine/c117.cpp
index 2527789a029..018fd21689b 100644
--- a/src/mame/machine/c117.cpp
+++ b/src/mame/machine/c117.cpp
@@ -33,11 +33,13 @@ const device_type NAMCO_C117 = &device_creator<namco_c117_device>;
// namco_c117_device - constructor
//-------------------------------------------------
-namco_c117_device::namco_c117_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock)
+namco_c117_device::namco_c117_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, NAMCO_C117, "Namco C117 MMU", tag, owner, clock, "namco_c117", __FILE__),
device_memory_interface(mconfig, *this),
m_subres_cb(*this),
- m_program_config("program", ENDIANNESS_BIG, 8, 23)
+ m_program_config("program", ENDIANNESS_BIG, 8, 23),
+ m_maincpu_tag(nullptr),
+ m_subcpu_tag(nullptr)
{
}