diff options
author | 2017-06-11 01:06:32 +1000 | |
---|---|---|
committer | 2017-06-11 01:06:32 +1000 | |
commit | 7248c702bc98af792a94ba7aed1ba386c51d616f (patch) | |
tree | 4e3cbbc5195cc224db92a5ad35d4a8fe31d16aa4 /src/devices/bus/ieee488 | |
parent | 5e9030939e2dcfee4395950cae22c3486bc77ede (diff) |
fix Commodore D9060 memory map mirror exposed by validating slot devices
Diffstat (limited to 'src/devices/bus/ieee488')
-rw-r--r-- | src/devices/bus/ieee488/d9060.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/ieee488/d9060.cpp b/src/devices/bus/ieee488/d9060.cpp index 9260e804703..1fef9396ce4 100644 --- a/src/devices/bus/ieee488/d9060.cpp +++ b/src/devices/bus/ieee488/d9060.cpp @@ -129,7 +129,7 @@ ADDRESS_MAP_END static ADDRESS_MAP_START( d9060_hdc_mem, AS_PROGRAM, 8, d9060_device_base ) ADDRESS_MAP_GLOBAL_MASK(0x1fff) AM_RANGE(0x0000, 0x007f) AM_MIRROR(0x300) AM_RAM - AM_RANGE(0x0080, 0x008f) AM_MIRROR(0x380) AM_DEVREADWRITE(M6522_TAG, via6522_device, read, write) + AM_RANGE(0x0080, 0x008f) AM_MIRROR(0x330) AM_DEVREADWRITE(M6522_TAG, via6522_device, read, write) AM_RANGE(0x0400, 0x07ff) AM_RAM AM_SHARE("share1") AM_RANGE(0x0800, 0x0bff) AM_RAM AM_SHARE("share2") AM_RANGE(0x0c00, 0x0fff) AM_RAM AM_SHARE("share3") |