diff options
Diffstat (limited to 'src/mame/drivers/nsm.cpp')
-rw-r--r-- | src/mame/drivers/nsm.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/nsm.cpp b/src/mame/drivers/nsm.cpp index 817578bebd7..6d2ec2a095d 100644 --- a/src/mame/drivers/nsm.cpp +++ b/src/mame/drivers/nsm.cpp @@ -40,9 +40,9 @@ public: private: - DECLARE_READ8_MEMBER(ff_r); - DECLARE_WRITE8_MEMBER(cru_w); - DECLARE_WRITE8_MEMBER(oe_w); + uint8_t ff_r(); + void cru_w(offs_t offset, uint8_t data); + void oe_w(uint8_t data); void nsm_io_map(address_map &map); void nsm_map(address_map &map); @@ -82,14 +82,14 @@ void nsm_state::nsm_io_map(address_map &map) static INPUT_PORTS_START( nsm ) INPUT_PORTS_END -READ8_MEMBER( nsm_state::ff_r ) { return 1; } +uint8_t nsm_state::ff_r() { return 1; } -WRITE8_MEMBER( nsm_state::oe_w ) +void nsm_state::oe_w(uint8_t data) { m_cru_count = 9; } -WRITE8_MEMBER( nsm_state::cru_w ) +void nsm_state::cru_w(offs_t offset, uint8_t data) { offset &= 7; if (!offset) |