summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/tmc1800.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/tmc1800.h')
-rw-r--r--src/mame/includes/tmc1800.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/includes/tmc1800.h b/src/mame/includes/tmc1800.h
index 7b51cdfa295..6e7c80c1c03 100644
--- a/src/mame/includes/tmc1800.h
+++ b/src/mame/includes/tmc1800.h
@@ -26,7 +26,7 @@
class tmc1800_base_state : public driver_device
{
public:
- tmc1800_base_state(const machine_config &mconfig, device_type type, std::string tag)
+ tmc1800_base_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this, CDP1802_TAG),
m_cassette(*this, "cassette"),
@@ -55,7 +55,7 @@ public:
TIMER_SETUP_BEEP
};
- tmc1800_state(const machine_config &mconfig, device_type type, std::string tag)
+ tmc1800_state(const machine_config &mconfig, device_type type, const char *tag)
: tmc1800_base_state(mconfig, type, tag),
m_vdc(*this, CDP1861_TAG)
{ }
@@ -84,7 +84,7 @@ protected:
class osc1000b_state : public tmc1800_base_state
{
public:
- osc1000b_state(const machine_config &mconfig, device_type type, std::string tag)
+ osc1000b_state(const machine_config &mconfig, device_type type, const char *tag)
: tmc1800_base_state(mconfig, type, tag)
{ }
@@ -107,7 +107,7 @@ public:
class tmc2000_state : public tmc1800_base_state
{
public:
- tmc2000_state(const machine_config &mconfig, device_type type, std::string tag)
+ tmc2000_state(const machine_config &mconfig, device_type type, const char *tag)
: tmc1800_base_state(mconfig, type, tag),
m_cti(*this, CDP1864_TAG),
m_colorram(*this, "color_ram"),
@@ -164,7 +164,7 @@ public:
class nano_state : public tmc1800_base_state
{
public:
- nano_state(const machine_config &mconfig, device_type type, std::string tag)
+ nano_state(const machine_config &mconfig, device_type type, const char *tag)
: tmc1800_base_state(mconfig, type, tag),
m_cti(*this, CDP1864_TAG),
m_ny0(*this, "NY0"),