summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/atarigen.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/atarigen.h')
-rw-r--r--src/mame/machine/atarigen.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/machine/atarigen.h b/src/mame/machine/atarigen.h
index 072d0a8f925..5010057ca00 100644
--- a/src/mame/machine/atarigen.h
+++ b/src/mame/machine/atarigen.h
@@ -111,7 +111,7 @@ class atari_sound_comm_device : public device_t
{
public:
// construction/destruction
- atari_sound_comm_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
+ atari_sound_comm_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
// static configuration helpers
static void static_set_sound_cpu(device_t &device, const char *cputag);
@@ -184,7 +184,7 @@ class atari_vad_device : public device_t,
{
public:
// construction/destruction
- atari_vad_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
+ atari_vad_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
// static configuration helpers
template<class _Object> static devcb_base &static_set_scanline_int_cb(device_t &device, _Object object) { return downcast<atari_vad_device &>(device).m_scanline_int_cb.set_callback(object); }
@@ -265,7 +265,7 @@ class atari_eeprom_device : public device_t
{
protected:
// construction/destruction
- atari_eeprom_device(const machine_config &mconfig, device_type devtype, const char *name, std::string tag, device_t *owner, const char *shortname, const char *file);
+ atari_eeprom_device(const machine_config &mconfig, device_type devtype, const char *name, const char *tag, device_t *owner, const char *shortname, const char *file);
public:
// unlock controls
@@ -296,7 +296,7 @@ class atari_eeprom_2804_device : public atari_eeprom_device
{
public:
// construction/destruction
- atari_eeprom_2804_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
+ atari_eeprom_2804_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
protected:
// device-level overrides
@@ -307,7 +307,7 @@ class atari_eeprom_2816_device : public atari_eeprom_device
{
public:
// construction/destruction
- atari_eeprom_2816_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
+ atari_eeprom_2816_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
protected:
// device-level overrides
@@ -332,7 +332,7 @@ class atarigen_state : public driver_device
{
public:
// construction/destruction
- atarigen_state(const machine_config &mconfig, device_type type, std::string tag);
+ atarigen_state(const machine_config &mconfig, device_type type, const char *tag);
// users must call through to these
virtual void machine_start() override;