summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/seattlecmp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/seattlecmp.cpp')
-rw-r--r--src/mame/drivers/seattlecmp.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/seattlecmp.cpp b/src/mame/drivers/seattlecmp.cpp
index ce7a1df8e19..d894127ce77 100644
--- a/src/mame/drivers/seattlecmp.cpp
+++ b/src/mame/drivers/seattlecmp.cpp
@@ -78,14 +78,14 @@ void seattle_comp_state::mem_map(address_map &map)
void seattle_comp_state::io_map(address_map &map)
{
- //ADDRESS_MAP_UNMAP_HIGH
+ //map.unmap_value_high();
map.global_mask(0xff);
map(0xf0, 0xf1).rw("pic1", FUNC(pic8259_device::read), FUNC(pic8259_device::write));
map(0xf2, 0xf3).rw("pic2", FUNC(pic8259_device::read), FUNC(pic8259_device::write));
map(0xf4, 0xf5).rw("stc", FUNC(am9513_device::read8), FUNC(am9513_device::write8));
map(0xf6, 0xf7).rw("uart", FUNC(i8251_device::read), FUNC(i8251_device::write));
- //AM_RANGE(0xfc, 0xfd) Parallel data, status, serial DCD
- //AM_RANGE(0xfe, 0xff) Eprom disable bit, read sense switches (bank of 8 dipswitches)
+ //map(0xfc, 0xfd) Parallel data, status, serial DCD
+ //map(0xfe, 0xff) Eprom disable bit, read sense switches (bank of 8 dipswitches)
}
/* Input ports */