summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/apollo.cpp
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2016-09-27 08:53:04 -0400
committer arbee <rb6502@users.noreply.github.com>2016-09-27 08:53:04 -0400
commit3957d89e4466d87f86a42597a49db12a7c040520 (patch)
tree963a22b50035db6ffb69900adc9160e06f635dc3 /src/mame/drivers/apollo.cpp
parent320121823c456f6a2a9f8ba37851aa13e0ab3011 (diff)
apollo: eliminate logerror spam on unmapped ISA access [Hans Ostermeyer]
Diffstat (limited to 'src/mame/drivers/apollo.cpp')
-rw-r--r--src/mame/drivers/apollo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/apollo.cpp b/src/mame/drivers/apollo.cpp
index 5c5f9ba9a6f..1ea7243a613 100644
--- a/src/mame/drivers/apollo.cpp
+++ b/src/mame/drivers/apollo.cpp
@@ -951,7 +951,7 @@ void apollo_state::machine_start(){
// install nop handlers for unmapped ISA bus addresses
m_isa->install16_device((ATBUS_IO_BASE - 0x40000) >> 7, (ATBUS_IO_END - 0x40000) >> 7, read16_delegate(FUNC(apollo_state::apollo_atbus_unmap_io_r), this), write16_delegate(FUNC(apollo_state::apollo_atbus_unmap_io_w), this));
- m_isa->install_memory(ATBUS_MEMORY_BASE, ATBUS_MEMORY_END, read8_delegate(FUNC(apollo_state::apollo_atbus_unmap_r), this), write8_delegate(FUNC(apollo_state::apollo_atbus_unmap_w), this));
+ m_isa->install_memory(0, ATBUS_MEMORY_END, read8_delegate(FUNC(apollo_state::apollo_atbus_unmap_r), this), write8_delegate(FUNC(apollo_state::apollo_atbus_unmap_w), this));
}
/***************************************************************************