From 07f0725d44e94eb141124e3fe2a5e839cfc7f7e3 Mon Sep 17 00:00:00 2001 From: AJR Date: Sat, 26 Jan 2019 12:41:38 -0500 Subject: bus/isa: Fix custom space configuration (nw) --- src/devices/bus/isa/isa.cpp | 4 ++-- 1 file 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); } } -- cgit v1.2.3