summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2018-02-12 20:16:31 +0100
committer Olivier Galibert <galibert@pobox.com>2018-02-12 20:16:31 +0100
commit534dea91eee1a5b67d8c480d411a10944830f619 (patch)
tree9d9d8fe2f56f34f1b95cbe21ccfc4f02ff806bb9
parent364196da155ced863f28a9398522d933a5446ca4 (diff)
Fixes (nw)
-rw-r--r--src/devices/bus/interpro/sr/gt.cpp6
-rw-r--r--src/devices/bus/interpro/sr/sr.h4
2 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/interpro/sr/gt.cpp b/src/devices/bus/interpro/sr/gt.cpp
index 5fede30ecbc..2b852cff6cd 100644
--- a/src/devices/bus/interpro/sr/gt.cpp
+++ b/src/devices/bus/interpro/sr/gt.cpp
@@ -22,7 +22,7 @@
ADDRESS_MAP_START(mpcb963_device::map)
AM_RANGE(0x00000000, 0x0000007f) AM_READ(idprom_r)
- AM_RANGE(0x00000080, 0x0000008f) AM_DEVICE8("ramdac0", bt459_device, map, 0xff)
+ AM_RANGE(0x00000080, 0x0000008f) AM_DEVICE8("ramdac0", bt459_device, map, 0x00ff)
AM_RANGE(0x000000b0, 0x000000b3) AM_READWRITE16(control_r, control_w, 0xffff)
//AM_RANGE(0x000000d4, 0x000000d7) AM_READWRITE8(, 0xff) // currently unknown
//AM_RANGE(0x000000a0, 0x000000a0) AM_READWRITE8(, 0xff) // currently unknown
@@ -31,8 +31,8 @@ ADDRESS_MAP_END
ADDRESS_MAP_START(mpcba79_device::map)
AM_RANGE(0x00000000, 0x0000007f) AM_READ(idprom_r)
- AM_RANGE(0x00000080, 0x0000008f) AM_DEVICE8("ramdac0", bt459_device, map, 0xff)
- AM_RANGE(0x00000090, 0x0000009f) AM_DEVICE8("ramdac1", bt459_device, map, 0xff)
+ AM_RANGE(0x00000080, 0x0000008f) AM_DEVICE8("ramdac0", bt459_device, map, 0x00ff)
+ AM_RANGE(0x00000090, 0x0000009f) AM_DEVICE8("ramdac1", bt459_device, map, 0x00ff)
AM_RANGE(0x000000b0, 0x000000b3) AM_READWRITE16(control_r, control_w, 0xffff)
//AM_RANGE(0x000000d4, 0x000000d7) AM_READWRITE8(, 0xff) // currently unknown
//AM_RANGE(0x000000a0, 0x000000a0) AM_READWRITE8(, 0xff) // currently unknown
diff --git a/src/devices/bus/interpro/sr/sr.h b/src/devices/bus/interpro/sr/sr.h
index 3799aff9a70..ddd41938661 100644
--- a/src/devices/bus/interpro/sr/sr.h
+++ b/src/devices/bus/interpro/sr/sr.h
@@ -80,8 +80,8 @@ public:
offs_t end = start + (SR_SIZE - 1);
// install the device address map
- m_data_space->install_device(start, end, device, map, 32);
- m_io_space->install_device(start, end, device, map, 32);
+ m_data_space->install_device(start, end, device, map);
+ m_io_space->install_device(start, end, device, map);
m_slot_count++;
}