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/includes/namconb1.h | |
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/includes/namconb1.h')
-rw-r--r-- | src/mame/includes/namconb1.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mame/includes/namconb1.h b/src/mame/includes/namconb1.h index 26d527b1cd9..3949c676cbd 100644 --- a/src/mame/includes/namconb1.h +++ b/src/mame/includes/namconb1.h @@ -30,6 +30,7 @@ class namconb1_state : public namcos2_shared_state public: namconb1_state(const machine_config &mconfig, device_type type, const char *tag) : namcos2_shared_state(mconfig, type, tag), + m_mcu(*this, "mcu"), m_eeprom(*this, "eeprom"), m_p1(*this, "P1"), m_p2(*this, "P2"), @@ -62,6 +63,7 @@ public: void init_gslgr94u(); private: + required_device<cpu_device> m_mcu; required_device<eeprom_parallel_28xx_device> m_eeprom; required_ioport m_p1; required_ioport m_p2; |