diff options
author | 2016-01-16 12:24:11 +0100 | |
---|---|---|
committer | 2016-01-16 14:54:42 +0100 | |
commit | 1f90ceab075c4869298e963bf0a14a0aac2f1caa (patch) | |
tree | 49984b30e3c6da6a0be068dbfcd02882bdafdc08 /src/devices/bus/vc4000/rom.h | |
parent | 34161178c431b018cba0d0286951c69aee80e968 (diff) |
tags are now strings (nw)
fix start project for custom builds in Visual Studio (nw)
Diffstat (limited to 'src/devices/bus/vc4000/rom.h')
-rw-r--r-- | src/devices/bus/vc4000/rom.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/vc4000/rom.h b/src/devices/bus/vc4000/rom.h index af7bb070271..3c9d4b80e7d 100644 --- a/src/devices/bus/vc4000/rom.h +++ b/src/devices/bus/vc4000/rom.h @@ -13,8 +13,8 @@ class vc4000_rom_device : public device_t, { public: // construction/destruction - vc4000_rom_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); - vc4000_rom_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + vc4000_rom_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); + vc4000_rom_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); // device-level overrides virtual void device_start() override {} @@ -30,7 +30,7 @@ class vc4000_rom4k_device : public vc4000_rom_device { public: // construction/destruction - vc4000_rom4k_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + vc4000_rom4k_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); }; // ======================> vc4000_ram1k_device @@ -39,7 +39,7 @@ class vc4000_ram1k_device : public vc4000_rom_device { public: // construction/destruction - vc4000_ram1k_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + vc4000_ram1k_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); // reading and writing virtual DECLARE_READ8_MEMBER(read_ram) override; @@ -52,7 +52,7 @@ class vc4000_chess2_device : public vc4000_rom_device { public: // construction/destruction - vc4000_chess2_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + vc4000_chess2_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); // reading and writing virtual DECLARE_READ8_MEMBER(extra_rom) override; |