summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/ne1000.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/isa/ne1000.h')
-rw-r--r--src/devices/bus/isa/ne1000.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/isa/ne1000.h b/src/devices/bus/isa/ne1000.h
index a59e24374ed..fa6011b45e1 100644
--- a/src/devices/bus/isa/ne1000.h
+++ b/src/devices/bus/isa/ne1000.h
@@ -16,8 +16,8 @@ class ne1000_device: public device_t,
public:
ne1000_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- DECLARE_READ8_MEMBER(ne1000_port_r);
- DECLARE_WRITE8_MEMBER(ne1000_port_w);
+ uint8_t ne1000_port_r(offs_t offset);
+ void ne1000_port_w(offs_t offset, uint8_t data);
protected:
virtual void device_start() override;
@@ -28,8 +28,8 @@ protected:
private:
void ne1000_irq_w(int state);
- DECLARE_READ8_MEMBER(ne1000_mem_read);
- DECLARE_WRITE8_MEMBER(ne1000_mem_write);
+ uint8_t ne1000_mem_read(offs_t offset);
+ void ne1000_mem_write(offs_t offset, uint8_t data);
required_device<dp8390d_device> m_dp8390;
uint8_t m_irq;