diff options
author | 2016-01-20 21:42:13 +0100 | |
---|---|---|
committer | 2016-01-20 21:42:13 +0100 | |
commit | 4e8e3066f847cc0fa11539f4d9ab8a63f70ca475 (patch) | |
tree | 25d48b50f2b89dd5b9e7dbbfeeb85c534ec6852a /src/devices/cpu/m6805/m6805.h | |
parent | 3a8ccb89b426509be06089a19c51ecf55567ed1b (diff) |
reverting:
SHA-1: 1f90ceab075c4869298e963bf0a14a0aac2f1caa
* tags are now strings (nw)
fix start project for custom builds in Visual Studio (nw)
Diffstat (limited to 'src/devices/cpu/m6805/m6805.h')
-rw-r--r-- | src/devices/cpu/m6805/m6805.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/cpu/m6805/m6805.h b/src/devices/cpu/m6805/m6805.h index e811d1b013c..40fd8b3db9b 100644 --- a/src/devices/cpu/m6805/m6805.h +++ b/src/devices/cpu/m6805/m6805.h @@ -26,7 +26,7 @@ class m6805_base_device : public cpu_device { public: // construction/destruction - m6805_base_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock, const device_type type, const char *name, UINT32 addr_width, const char *shortname, const char *source); + m6805_base_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock, const device_type type, const char *name, UINT32 addr_width, const char *shortname, const char *source); protected: // device-level overrides @@ -294,7 +294,7 @@ class m6805_device : public m6805_base_device { public: // construction/destruction - m6805_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock) + m6805_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : m6805_base_device(mconfig, tag, owner, clock, M6805, "M6805", 12, "m6805", __FILE__) { } protected: @@ -307,7 +307,7 @@ class m68hc05eg_device : public m6805_base_device { public: // construction/destruction - m68hc05eg_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock) + m68hc05eg_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : m6805_base_device(mconfig, tag, owner, clock, M68HC05EG, "M68HC05EG", 13, "m68hc05eg", __FILE__) { } protected: @@ -325,7 +325,7 @@ class m68705_device : public m6805_base_device { public: // construction/destruction - m68705_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock) + m68705_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : m6805_base_device(mconfig, tag, owner, clock, M68705, "M68705", 12, "m68705", __FILE__) { } protected: @@ -343,7 +343,7 @@ class hd63705_device : public m6805_base_device { public: // construction/destruction - hd63705_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock) + hd63705_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : m6805_base_device(mconfig, tag, owner, clock, HD63705, "HD63705", 16, "hd63705", __FILE__) { } protected: |