diff options
Diffstat (limited to 'src/devices/bus/hp_dio/hp_dio.cpp')
-rw-r--r-- | src/devices/bus/hp_dio/hp_dio.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/hp_dio/hp_dio.cpp b/src/devices/bus/hp_dio/hp_dio.cpp index c90a1e2c83a..035f3ea2b5c 100644 --- a/src/devices/bus/hp_dio/hp_dio.cpp +++ b/src/devices/bus/hp_dio/hp_dio.cpp @@ -257,11 +257,11 @@ void dio16_device::install_memory(offs_t start, offs_t end, switch (m_prgwidth) { case 16: m_prgspace->install_readwrite_handler(start, end, rhandler, - whandler); + whandler); break; case 32: m_prgspace->install_readwrite_handler(start, end, rhandler, - whandler, 0xffffffff); + whandler, 0xffffffff); break; default: fatalerror("DIO: Bus width %d not supported\n", m_prgwidth); |