Remove unwanted changes (nw)

This commit is contained in:
yz70s 2019-12-22 11:31:16 +01:00
parent c85f53c511
commit a2e0ec8df3
2 changed files with 2 additions and 2 deletions

View File

@ -185,7 +185,7 @@ WRITE8_MEMBER(mc1502_fdc_device::mc1502_fdc_w)
// mc1502_fdc_device - constructor
//-------------------------------------------------
mc1502_fdc_device::mc1502_fdc_device(const machine_config& mconfig, const char* tag, device_t* owner, uint32_t clock)
mc1502_fdc_device::mc1502_fdc_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, MC1502_FDC, tag, owner, clock)
, device_isa8_card_interface(mconfig, *this)
, m_fdc(*this, "fdc")

View File

@ -24,7 +24,7 @@ public:
// construction/destruction
i82439tx_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
void set_cpu(const char* tag) { m_cpu_tag = tag; m_cpu.set_tag(m_cpu_tag); }
void set_cpu(const char *tag) { m_cpu_tag = tag; m_cpu.set_tag(m_cpu_tag); }
void set_region(const char *tag) { m_region_tag = tag; }
virtual uint32_t pci_read(pci_bus_device *pcibus, int function, int offset, uint32_t mem_mask) override;