summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-04-17 10:36:31 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2014-04-17 10:36:31 +0000
commitd8ae2f04fd56620d9d133a5ee32f15f321105d08 (patch)
tree7e3a460f31e46ea7cb3969238cab5f2f88a157b8
parent7dc6b37135d03b7108923d1f1d9424791526e681 (diff)
MEMBER not a HANDLER (nw)
-rw-r--r--src/mame/machine/tait8741.h2
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: