diff options
Diffstat (limited to 'src/mame/etc/template_cpu.cpp')
-rw-r--r-- | src/mame/etc/template_cpu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/etc/template_cpu.cpp b/src/mame/etc/template_cpu.cpp index 3f85ad1dddc..f5161a71380 100644 --- a/src/mame/etc/template_cpu.cpp +++ b/src/mame/etc/template_cpu.cpp @@ -99,7 +99,7 @@ void xxx_cpu_device::execute_set_input(int irqline, int state) } #endif -xxx_cpu_device::xxx_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) +xxx_cpu_device::xxx_cpu_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock) : cpu_device(mconfig, XXX, "XXX", tag, owner, clock, "xxx", __FILE__) , m_program_config("program", ENDIANNESS_BIG, 8, 32, -1) , m_data_config("data", ENDIANNESS_BIG, 8, 32, 0) |