diff options
Diffstat (limited to 'src/devices/machine/mpc106.cpp')
-rw-r--r-- | src/devices/machine/mpc106.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/devices/machine/mpc106.cpp b/src/devices/machine/mpc106.cpp index f3c1045cfa0..3bc89e6174d 100644 --- a/src/devices/machine/mpc106.cpp +++ b/src/devices/machine/mpc106.cpp @@ -67,8 +67,7 @@ void mpc106_host_device::device_start() { pci_host_device::device_start(); m_cpu_space = &m_cpu->space(AS_PCI_CONFIG); - memory_space = &space(AS_PCI_MEM); - io_space = &space(AS_PCI_IO); + set_spaces(&space(AS_PCI_MEM), &space(AS_PCI_IO)); memory_window_start = 0; memory_window_end = 0xffffffff; |