summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h8/h83006.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/h8/h83006.h')
-rw-r--r--src/devices/cpu/h8/h83006.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/h8/h83006.h b/src/devices/cpu/h8/h83006.h
index bb2fe644a47..576c3a45273 100644
--- a/src/devices/cpu/h8/h83006.h
+++ b/src/devices/cpu/h8/h83006.h
@@ -24,8 +24,8 @@
class h83006_device : public h8h_device {
public:
- h83006_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);
- h83006_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ h83006_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);
+ h83006_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
DECLARE_READ8_MEMBER(syscr_r);
DECLARE_WRITE8_MEMBER(syscr_w);
@@ -71,7 +71,7 @@ protected:
class h83007_device : public h83006_device {
public:
- h83007_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ h83007_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
};
extern const device_type H83006;