summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/ne2000.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/isa/ne2000.h')
-rw-r--r--src/devices/bus/isa/ne2000.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/isa/ne2000.h b/src/devices/bus/isa/ne2000.h
index 868d78b35a6..328443fd9b2 100644
--- a/src/devices/bus/isa/ne2000.h
+++ b/src/devices/bus/isa/ne2000.h
@@ -14,8 +14,8 @@ class ne2000_device: public device_t,
public:
ne2000_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- DECLARE_READ16_MEMBER(ne2000_port_r);
- DECLARE_WRITE16_MEMBER(ne2000_port_w);
+ uint16_t ne2000_port_r(offs_t offset, uint16_t mem_mask = ~0);
+ void ne2000_port_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
protected:
virtual void device_start() override;
@@ -26,8 +26,8 @@ protected:
private:
void ne2000_irq_w(int state);
- DECLARE_READ8_MEMBER(ne2000_mem_read);
- DECLARE_WRITE8_MEMBER(ne2000_mem_write);
+ uint8_t ne2000_mem_read(offs_t offset);
+ void ne2000_mem_write(offs_t offset, uint8_t data);
required_device<dp8390d_device> m_dp8390;
uint8_t m_irq;