summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h8/h83337.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/h8/h83337.h')
-rw-r--r--src/devices/cpu/h8/h83337.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/cpu/h8/h83337.h b/src/devices/cpu/h8/h83337.h
index 87cef30e2a0..9ece1765979 100644
--- a/src/devices/cpu/h8/h83337.h
+++ b/src/devices/cpu/h8/h83337.h
@@ -31,8 +31,8 @@
class h83337_device : public h8_device {
public:
- h83337_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);
- h83337_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
+ h83337_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);
+ h83337_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
DECLARE_READ8_MEMBER(wscr_r);
DECLARE_WRITE8_MEMBER(wscr_w);
@@ -79,12 +79,12 @@ protected:
class h83334_device : public h83337_device {
public:
- h83334_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
+ h83334_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
};
class h83336_device : public h83337_device {
public:
- h83336_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
+ h83336_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
};
extern const device_type H83334;