summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h8/h8s2245.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/h8/h8s2245.h')
-rw-r--r--src/devices/cpu/h8/h8s2245.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/cpu/h8/h8s2245.h b/src/devices/cpu/h8/h8s2245.h
index b4364f68501..6b7f25d4f1d 100644
--- a/src/devices/cpu/h8/h8s2245.h
+++ b/src/devices/cpu/h8/h8s2245.h
@@ -31,8 +31,8 @@
class h8s2245_device : public h8s2000_device {
public:
- h8s2245_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source);
- h8s2245_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ h8s2245_device(const machine_config &mconfig, device_type type, const char *name, std::string tag, device_t *owner, UINT32 clock, const char *shortname, const char *source);
+ h8s2245_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
DECLARE_READ8_MEMBER(syscr_r);
DECLARE_WRITE8_MEMBER(syscr_w);
@@ -81,17 +81,17 @@ protected:
class h8s2241_device : public h8s2245_device {
public:
- h8s2241_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ h8s2241_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
};
class h8s2242_device : public h8s2245_device {
public:
- h8s2242_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ h8s2242_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
};
class h8s2246_device : public h8s2245_device {
public:
- h8s2246_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ h8s2246_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
};
extern const device_type H8S2241;