summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/dcs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/dcs.cpp')
-rw-r--r--src/mame/audio/dcs.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/audio/dcs.cpp b/src/mame/audio/dcs.cpp
index 7c685e9567e..8f5415dcfee 100644
--- a/src/mame/audio/dcs.cpp
+++ b/src/mame/audio/dcs.cpp
@@ -1479,8 +1479,8 @@ int dcs_audio_device::control_r()
void dcs_audio_device::reset_w(int state)
{
- /* going high halts the CPU */
- if (state)
+ /* going low halts the CPU */
+ if (!state)
{
// logerror("%s: DCS reset = %d\n", machine().describe_context(), state);
@@ -1489,7 +1489,7 @@ void dcs_audio_device::reset_w(int state)
m_cpu->set_input_line(INPUT_LINE_RESET, ASSERT_LINE);
}
- /* going low resets and reactivates the CPU */
+ /* going high resets and reactivates the CPU */
else
m_cpu->set_input_line(INPUT_LINE_RESET, CLEAR_LINE);
}