summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2010-06-10 04:46:22 +0000
committer Aaron Giles <aaron@aarongiles.com>2010-06-10 04:46:22 +0000
commit6fc3f5d8a53798dda2cdb6581cd800ff4e9f25b4 (patch)
tree6beaf702c950c48f80f40f16dd77a2cb932b4b68
parent019793c78fa965057d97e9d082f7479c53ed867e (diff)
Fix assertion.
-rw-r--r--src/mame/machine/decocass.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/decocass.c b/src/mame/machine/decocass.c
index c81b82156f8..963e7a0adad 100644
--- a/src/mame/machine/decocass.c
+++ b/src/mame/machine/decocass.c
@@ -222,7 +222,7 @@ WRITE8_HANDLER( decocass_reset_w )
}
/* 8041 active low reset */
- cpu_set_input_line(state->mcu, INPUT_LINE_RESET, (data & 0x08) ^ 0x08);
+ cpu_set_input_line(state->mcu, INPUT_LINE_RESET, (data & 0x08) ? CLEAR_LINE : ASSERT_LINE);
}