summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-10-28 23:29:44 -0400
committer AJR <ajrhacker@users.noreply.github.com>2018-10-28 23:30:19 -0400
commit7cbd414f418e9b0785cb1163ee177691c5a9f159 (patch)
tree7e8ba230873f852b3c4083ea93c5e6aff911e22b
parentf7996ed2ade9c824b8958f231facd1c5b938e2dd (diff)
acesp.cpp: Dummy out this not so useful bit (nw)
-rw-r--r--src/mame/drivers/acesp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/acesp.cpp b/src/mame/drivers/acesp.cpp
index cc33ff16dff..7f1b049ff2d 100644
--- a/src/mame/drivers/acesp.cpp
+++ b/src/mame/drivers/acesp.cpp
@@ -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)