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/machine/i82875p.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/machine/i82875p.h')
-rw-r--r-- | src/devices/machine/i82875p.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/machine/i82875p.h b/src/devices/machine/i82875p.h index 7b437f53d6e..4f7723e64a7 100644 --- a/src/devices/machine/i82875p.h +++ b/src/devices/machine/i82875p.h @@ -20,9 +20,9 @@ class i82875p_host_device : public pci_host_device { public: - i82875p_host_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); + i82875p_host_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); - void set_cpu_tag(std::string tag); + void set_cpu_tag(const char *tag); void set_ram_size(int ram_size); virtual void reset_all_mappings() override; @@ -85,7 +85,7 @@ protected: private: DECLARE_ADDRESS_MAP(agp_translation_map, 32); - std::string cpu_tag; + const char *cpu_tag; int ram_size; cpu_device *cpu; std::vector<UINT32> ram; @@ -98,7 +98,7 @@ private: class i82875p_agp_device : public agp_bridge_device { public: - i82875p_agp_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); + i82875p_agp_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); protected: virtual void device_start() override; @@ -107,7 +107,7 @@ protected: class i82875p_overflow_device : public pci_device { public: - i82875p_overflow_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); + i82875p_overflow_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); DECLARE_READ8_MEMBER (dram_row_boundary_r); |