diff options
author | 2019-01-26 12:41:38 -0500 | |
---|---|---|
committer | 2019-01-26 12:41:38 -0500 | |
commit | 07f0725d44e94eb141124e3fe2a5e839cfc7f7e3 (patch) | |
tree | e49db93331d41031945e7cf4de98acce05e95768 /src/devices/bus/isa | |
parent | 24937b137302a9e5fe3694014b284ba195a40402 (diff) |
bus/isa: Fix custom space configuration (nw)
Diffstat (limited to 'src/devices/bus/isa')
-rw-r--r-- | src/devices/bus/isa/isa.cpp | 4 |
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); } } |