diff options
author | 2014-04-17 10:36:31 +0000 | |
---|---|---|
committer | 2014-04-17 10:36:31 +0000 | |
commit | d8ae2f04fd56620d9d133a5ee32f15f321105d08 (patch) | |
tree | 7e3a460f31e46ea7cb3969238cab5f2f88a157b8 | |
parent | 7dc6b37135d03b7108923d1f1d9424791526e681 (diff) |
MEMBER not a HANDLER (nw)
-rw-r--r-- | src/mame/machine/tait8741.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/tait8741.h b/src/mame/machine/tait8741.h index c487f6acf83..27953fb4966 100644 --- a/src/mame/machine/tait8741.h +++ b/src/mame/machine/tait8741.h @@ -156,7 +156,7 @@ public: DECLARE_READ8_MEMBER( read_1 ) { return read(1,offset); } DECLARE_WRITE8_MEMBER( write_1 ) { write(1,offset,data); } - DECLARE_WRITE8_HANDLER( nmi_enable_w ) { m_nmi_enable = 1; } + DECLARE_WRITE8_MEMBER( nmi_enable_w ) { m_nmi_enable = 1; } TIMER_CALLBACK_MEMBER( tx ); protected: |