diff options
Diffstat (limited to 'src/mame/machine/apollo.cpp')
-rw-r--r-- | src/mame/machine/apollo.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/machine/apollo.cpp b/src/mame/machine/apollo.cpp index b7dd555b6bd..68e6e53b75c 100644 --- a/src/mame/machine/apollo.cpp +++ b/src/mame/machine/apollo.cpp @@ -127,7 +127,7 @@ INPUT_PORTS_END class apollo_config_device : public device_t { public: - apollo_config_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); + apollo_config_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); protected: // device-level overrides virtual void device_config_complete() override; @@ -141,7 +141,7 @@ extern const device_type APOLLO_CONF; const device_type APOLLO_CONF = &device_creator<apollo_config_device>; -apollo_config_device::apollo_config_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock) +apollo_config_device::apollo_config_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, APOLLO_CONF, "Apollo Configuration", tag, owner, clock, "apollo_config", __FILE__) { } @@ -724,7 +724,7 @@ TIMER_CALLBACK_MEMBER( apollo_state::apollo_rtc_timer ) #undef VERBOSE #define VERBOSE 0 -apollo_sio::apollo_sio(const machine_config &mconfig, std::string tag, +apollo_sio::apollo_sio(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : mc68681_device(mconfig, tag, owner, clock), m_csrb(0), @@ -880,7 +880,7 @@ const device_type APOLLO_NI = &device_creator<apollo_ni> ; // apollo_ni - constructor //------------------------------------------------- -apollo_ni::apollo_ni(const machine_config &mconfig, std::string tag, +apollo_ni::apollo_ni(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, APOLLO_NI, "Node ID", tag, owner, clock, "node_id", __FILE__), device_image_interface(mconfig, *this) @@ -1288,7 +1288,7 @@ const device_type APOLLO_STDIO = &device_creator<apollo_stdio_device> ; //------------------------------------------------- apollo_stdio_device::apollo_stdio_device(const machine_config &mconfig, - std::string tag, device_t *owner, UINT32 clock) : + const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, APOLLO_STDIO, "Apollo STDIO", tag, owner, clock, "apollo_stdio", __FILE__), device_serial_interface(mconfig, *this), m_tx_w(*this) |