summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-04-10 18:19:50 -0400
committer AJR <ajrhacker@users.noreply.github.com>2020-04-10 18:19:50 -0400
commita05c1c6d0903ca1d4458ff1e8fdac9eca6e82fec (patch)
treeabec0589038f5f659650c526737664017c5c2e5c
parente619ff316e3698df89c57309f4ce781d6cc312e4 (diff)
dcs: Fix reset control (nw)
-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);
}