diff options
author | 2020-05-21 19:57:43 +0200 | |
---|---|---|
committer | 2020-05-21 19:57:43 +0200 | |
commit | 889e65792ed3eb0e90c1c6cf266b6f4a08b9a26b (patch) | |
tree | 65d69f004e494e2fa57526066e022886416d07e6 /src/devices/bus/isa/ne2000.h | |
parent | 6b8cb09ee7cfdbc6415aebe4670b44e5b5756a2a (diff) |
last batch of changes to make the https://github.com/mamedev/mame/tree/devcb-no-space branch build. (nw)
Diffstat (limited to 'src/devices/bus/isa/ne2000.h')
-rw-r--r-- | src/devices/bus/isa/ne2000.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/isa/ne2000.h b/src/devices/bus/isa/ne2000.h index 868d78b35a6..7f62e5e5167 100644 --- a/src/devices/bus/isa/ne2000.h +++ b/src/devices/bus/isa/ne2000.h @@ -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; |