itech32.cpp: removed via from the sftm machine config, as it was before MCFG removal (nw)

This commit is contained in:
Ivan Vangelista 2018-09-08 07:39:04 +02:00
parent a89530ceaa
commit 1c3008e9e0
2 changed files with 1 additions and 2 deletions

View File

@ -1770,7 +1770,6 @@ void drivedge_state::drivedge(machine_config &config)
void itech32_state::sftm(machine_config &config)
{
base_devices(config);
via(config);
M68EC020(config, m_maincpu, CPU020_CLOCK);
m_maincpu->set_addrmap(AS_PROGRAM, &itech32_state::itech020_map);

View File

@ -71,7 +71,7 @@ public:
protected:
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_soundcpu;
required_device<via6522_device> m_via;
optional_device<via6522_device> m_via; // sftm, wcbowl and gt games don't have the via
required_device<es5506_device> m_ensoniq;
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;