summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/namcos2.cpp
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2017-11-15 17:06:39 +0100
committer hap <happppp@users.noreply.github.com>2017-11-15 17:06:39 +0100
commit0b50eb90991f086ab4bc769090c589606dbd4093 (patch)
treeb2a14941bf7bb7eef1a9b3f75b4590246301239c /src/mame/machine/namcos2.cpp
parent705cee1a0cc0dc39a77b035edfc841cf28f02652 (diff)
Revert "pulse_input_line: change units to cycles and set default param to min_cycles (nw)"
This reverts commit 46bad5c707cadd5293828f78d1bcbbb0ae23749c.
Diffstat (limited to 'src/mame/machine/namcos2.cpp')
-rw-r--r--src/mame/machine/namcos2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/namcos2.cpp b/src/mame/machine/namcos2.cpp
index 5ac39e83f1a..e060200d4de 100644
--- a/src/mame/machine/namcos2.cpp
+++ b/src/mame/machine/namcos2.cpp
@@ -504,7 +504,7 @@ WRITE8_MEMBER( namcos2_shared_state::namcos2_mcu_analog_ctrl_w )
/* If the interrupt enable bit is set trigger an A/D IRQ */
if(data & 0x20)
{
- m_mcu->pulse_input_line(HD63705_INT_ADCONV);
+ m_mcu->pulse_input_line(HD63705_INT_ADCONV, 1);
}
}
}