summaryrefslogtreecommitdiffstats
path: root/src/mame/includes/pgm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/pgm.h')
-rw-r--r--src/mame/includes/pgm.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/includes/pgm.h b/src/mame/includes/pgm.h
index fec59357bcd..23f43937ff3 100644
--- a/src/mame/includes/pgm.h
+++ b/src/mame/includes/pgm.h
@@ -19,7 +19,7 @@
class pgm_state : public driver_device
{
public:
- pgm_state(const machine_config &mconfig, device_type type, std::string tag)
+ pgm_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_videoregs(*this, "videoregs"),
m_videoram(*this, "videoram"),
@@ -115,7 +115,7 @@ public:
class pgm_asic3_state : public pgm_state
{
public:
- pgm_asic3_state(const machine_config &mconfig, device_type type, std::string tag)
+ pgm_asic3_state(const machine_config &mconfig, device_type type, const char *tag)
: pgm_state(mconfig, type, tag) {
}
@@ -137,7 +137,7 @@ public:
class pgm_arm_type1_state : public pgm_state
{
public:
- pgm_arm_type1_state(const machine_config &mconfig, device_type type, std::string tag)
+ pgm_arm_type1_state(const machine_config &mconfig, device_type type, const char *tag)
: pgm_state(mconfig, type, tag),
m_arm7_shareram(*this, "arm7_shareram"),
m_prot(*this, "prot") {
@@ -263,7 +263,7 @@ public:
class pgm_arm_type2_state : public pgm_state
{
public:
- pgm_arm_type2_state(const machine_config &mconfig, device_type type, std::string tag)
+ pgm_arm_type2_state(const machine_config &mconfig, device_type type, const char *tag)
: pgm_state(mconfig, type, tag),
m_arm_ram(*this, "arm_ram"),
m_arm7_shareram(*this, "arm7_shareram"),
@@ -307,7 +307,7 @@ public:
class pgm_arm_type3_state : public pgm_state
{
public:
- pgm_arm_type3_state(const machine_config &mconfig, device_type type, std::string tag)
+ pgm_arm_type3_state(const machine_config &mconfig, device_type type, const char *tag)
: pgm_state(mconfig, type, tag),
m_arm_ram(*this, "arm_ram"),
m_arm_ram2(*this, "arm_ram2"),
@@ -367,7 +367,7 @@ public:
class pgm_022_025_state : public pgm_state
{
public:
- pgm_022_025_state(const machine_config &mconfig, device_type type, std::string tag)
+ pgm_022_025_state(const machine_config &mconfig, device_type type, const char *tag)
: pgm_state(mconfig, type, tag),
m_sharedprotram(*this, "sharedprotram"),
m_igs025(*this,"igs025"),
@@ -395,7 +395,7 @@ public:
class pgm_012_025_state : public pgm_state
{
public:
- pgm_012_025_state(const machine_config &mconfig, device_type type, std::string tag)
+ pgm_012_025_state(const machine_config &mconfig, device_type type, const char *tag)
: pgm_state(mconfig, type, tag),
m_igs025(*this,"igs025")
{
@@ -422,7 +422,7 @@ public:
class pgm_028_025_state : public pgm_state
{
public:
- pgm_028_025_state(const machine_config &mconfig, device_type type, std::string tag)
+ pgm_028_025_state(const machine_config &mconfig, device_type type, const char *tag)
: pgm_state(mconfig, type, tag),
m_sharedprotram(*this, "sharedprotram"),
m_igs025(*this,"igs025"),