summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-01-26 12:41:38 -0500
committer AJR <ajrhacker@users.noreply.github.com>2019-01-26 12:41:38 -0500
commit07f0725d44e94eb141124e3fe2a5e839cfc7f7e3 (patch)
treee49db93331d41031945e7cf4de98acce05e95768
parent24937b137302a9e5fe3694014b284ba195a40402 (diff)
bus/isa: Fix custom space configuration (nw)
-rw-r--r--src/devices/bus/isa/isa.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/isa/isa.cpp b/src/devices/bus/isa/isa.cpp
index 8a0b50f0796..92ead5df95b 100644
--- a/src/devices/bus/isa/isa.cpp
+++ b/src/devices/bus/isa/isa.cpp
@@ -209,8 +209,8 @@ void isa8_device::device_config_complete()
{
if (m_allocspaces)
{
- m_memspace.set_tag(*this, DEVICE_SELF, AS_PROGRAM);
- m_iospace.set_tag(*this, DEVICE_SELF, AS_IO);
+ m_memspace.set_tag(*this, DEVICE_SELF, AS_ISA_MEM);
+ m_iospace.set_tag(*this, DEVICE_SELF, AS_ISA_IO);
}
}