diff options
Diffstat (limited to 'src/devices/bus/z88/ram.h')
-rw-r--r-- | src/devices/bus/z88/ram.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/z88/ram.h b/src/devices/bus/z88/ram.h index d8515a6b9c0..b02630b67dc 100644 --- a/src/devices/bus/z88/ram.h +++ b/src/devices/bus/z88/ram.h @@ -19,8 +19,8 @@ class z88_32k_ram_device : public device_t, { public: // construction/destruction - z88_32k_ram_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); - z88_32k_ram_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); + z88_32k_ram_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); + z88_32k_ram_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); protected: // device-level overrides @@ -43,7 +43,7 @@ class z88_128k_ram_device : public z88_32k_ram_device { public: // construction/destruction - z88_128k_ram_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + z88_128k_ram_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); protected: // z88cart_interface overrides @@ -56,7 +56,7 @@ class z88_512k_ram_device : public z88_32k_ram_device { public: // construction/destruction - z88_512k_ram_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + z88_512k_ram_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); protected: // z88cart_interface overrides @@ -69,7 +69,7 @@ class z88_1024k_ram_device : public z88_32k_ram_device { public: // construction/destruction - z88_1024k_ram_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + z88_1024k_ram_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); protected: // z88cart_interface overrides |