diff options
author | 2018-09-09 13:47:13 +0100 | |
---|---|---|
committer | 2018-09-09 08:47:13 -0400 | |
commit | ea7f1e3bd977d12929e3cf5674f168143d5791bf (patch) | |
tree | 5320a5f03b92b5a1e2bd73cee87c3de735050515 /src/mame/machine/namcos2.cpp | |
parent | 6153de028a36fb3dd785146bf4350777e39f92a4 (diff) |
use c68 for more games, fix what looks like more cam900 damage (luckywld) due to bad ram size assumptions. (#3976)
* use c68 for more games, fix what looks like more cam900 damage (luckywld) due to bad ram size assumptions.
* fix crash I introduced by trying things in a slightly different way
* change comment (nw)
* some cleanup (nw)
* give dirtfox a calibrated default (nw)
* better served with a logerror, not popmessage (nw)
Diffstat (limited to 'src/mame/machine/namcos2.cpp')
-rw-r--r-- | src/mame/machine/namcos2.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/mame/machine/namcos2.cpp b/src/mame/machine/namcos2.cpp index e743a344eb4..e1057f066d5 100644 --- a/src/mame/machine/namcos2.cpp +++ b/src/mame/machine/namcos2.cpp @@ -107,13 +107,9 @@ WRITE8_MEMBER(namcos2_shared_state::system_reset_w) void namcos2_shared_state::reset_all_subcpus(int state) { m_slave->set_input_line(INPUT_LINE_RESET, state); - if (m_c68new) + if (m_c68) { - m_c68new->ext_reset(state); - } - else if (m_mcu) - { - m_mcu->set_input_line(INPUT_LINE_RESET, state); + m_c68->ext_reset(state); } else if (m_c65) { |