mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
Fix assertion.
This commit is contained in:
parent
019793c78f
commit
6fc3f5d8a5
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user