summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/namco51.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/namco51.cpp')
-rw-r--r--src/mame/machine/namco51.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/mame/machine/namco51.cpp b/src/mame/machine/namco51.cpp
index 64e30c825e2..c21a0e17b54 100644
--- a/src/mame/machine/namco51.cpp
+++ b/src/mame/machine/namco51.cpp
@@ -61,7 +61,7 @@
#include "screen.h"
-WRITE_LINE_MEMBER( namco_51xx_device::reset ) // make active low in the name
+WRITE_LINE_MEMBER( namco_51xx_device::reset )
{
// Reset line is active low.
m_cpu->set_input_line(INPUT_LINE_RESET, !state);
@@ -85,12 +85,7 @@ TIMER_CALLBACK_MEMBER( namco_51xx_device::rw_sync )
WRITE_LINE_MEMBER( namco_51xx_device::chip_select )
{
- machine().scheduler().synchronize(timer_expired_delegate(FUNC(namco_51xx_device::chip_select_sync),this), state);
-}
-
-TIMER_CALLBACK_MEMBER( namco_51xx_device::chip_select_sync )
-{
- m_cpu->set_input_line(0, param);
+ m_cpu->set_input_line(0, state);
}
uint8_t namco_51xx_device::read()