mirror of
https://github.com/holub/mame
synced 2025-04-24 09:20:02 +03:00
acesp.cpp: Dummy out this not so useful bit (nw)
This commit is contained in:
parent
f7996ed2ad
commit
7cbd414f41
@ -35,7 +35,6 @@ public:
|
||||
|
||||
private:
|
||||
void ace_sp_map(address_map &map);
|
||||
void ace_sp_portmap(address_map &map);
|
||||
|
||||
// devices
|
||||
required_device<cpu_device> m_maincpu;
|
||||
@ -74,11 +73,13 @@ void ace_sp_state::ace_sp_map(address_map &map)
|
||||
}
|
||||
|
||||
|
||||
#if 0
|
||||
void ace_sp_state::ace_sp_portmap(address_map &map)
|
||||
{
|
||||
//AM_RANGE(0x02, 0x02) // misc
|
||||
//AM_RANGE(0x05, 0x06) // AYs
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
static INPUT_PORTS_START( ace_sp )
|
||||
@ -88,7 +89,6 @@ INPUT_PORTS_END
|
||||
MACHINE_CONFIG_START(ace_sp_state::ace_sp)
|
||||
MCFG_DEVICE_ADD("maincpu", HD6303Y, 1000000)
|
||||
MCFG_DEVICE_PROGRAM_MAP(ace_sp_map)
|
||||
MCFG_DEVICE_IO_MAP(ace_sp_portmap)
|
||||
|
||||
MCFG_DEVICE_ADD("pia0", PIA6821, 0)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user