summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/namco68.h
diff options
context:
space:
mode:
author David Haywood <hazemamewip@hotmail.com>2018-09-09 13:47:13 +0100
committer R. Belmont <rb6502@users.noreply.github.com>2018-09-09 08:47:13 -0400
commitea7f1e3bd977d12929e3cf5674f168143d5791bf (patch)
tree5320a5f03b92b5a1e2bd73cee87c3de735050515 /src/mame/machine/namco68.h
parent6153de028a36fb3dd785146bf4350777e39f92a4 (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/namco68.h')
-rw-r--r--src/mame/machine/namco68.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/mame/machine/namco68.h b/src/mame/machine/namco68.h
index 98136cc9ffb..4d976afebe9 100644
--- a/src/mame/machine/namco68.h
+++ b/src/mame/machine/namco68.h
@@ -18,7 +18,6 @@ public:
namcoc68_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
auto in_pb_callback() { return m_in_pb_cb.bind(); }
- auto in_pb2_callback() { return m_in_pb2_cb.bind(); }
auto in_pc_callback() { return m_in_pc_cb.bind(); }
auto in_ph_callback() { return m_in_ph_cb.bind(); }
@@ -57,7 +56,6 @@ private:
required_device<m37450_device> m_mcu;
devcb_read8 m_in_pb_cb;
- devcb_read8 m_in_pb2_cb;
devcb_read8 m_in_pc_cb;
devcb_read8 m_in_ph_cb;
@@ -76,12 +74,9 @@ private:
DECLARE_READ8_MEMBER(dpram_byte_r);
DECLARE_WRITE8_MEMBER(dpram_byte_w);
- DECLARE_READ8_MEMBER(mcub_r) { return m_in_pb_cb(); }
- DECLARE_READ8_MEMBER(mcub2_r) { return m_in_pb2_cb(); }
+ DECLARE_READ8_MEMBER(unk_r);
+ DECLARE_READ8_MEMBER(mcuc_r);
-
- DECLARE_READ8_MEMBER(mcuc_r) { return m_in_pc_cb(); }
- DECLARE_READ8_MEMBER(mcuh_r) { return m_in_ph_cb(); }
DECLARE_READ8_MEMBER(mcudsw_r) { return m_in_pdsw_cb(); }
DECLARE_READ8_MEMBER(mcudi0_r) { return m_port_dial_in_cb[0](); }