summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Dirk Best <mail@dirk-best.de>2018-02-06 16:43:46 +0100
committer Dirk Best <mail@dirk-best.de>2018-02-06 16:43:46 +0100
commita8a100d506841505726d726bebcd20f418b7aac8 (patch)
tree54e82ff3a8056643523c3e4d1503f26068dfdcdd
parentdd2cb6fe6ee7e566c1169c258b28400a8350403b (diff)
3b1: Fix regression
-rw-r--r--src/mame/drivers/unixpc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/unixpc.cpp b/src/mame/drivers/unixpc.cpp
index f942c62608e..6b30aec405e 100644
--- a/src/mame/drivers/unixpc.cpp
+++ b/src/mame/drivers/unixpc.cpp
@@ -283,13 +283,13 @@ static ADDRESS_MAP_START( unixpc_mem, AS_PROGRAM, 16, unixpc_state )
AM_RANGE(0x4a0000, 0x4a0001) AM_WRITE(misc_control_w)
AM_RANGE(0x4d0000, 0x4d7fff) AM_WRITE(diskdma_ptr_w)
AM_RANGE(0x4e0000, 0x4e0001) AM_WRITE(disk_control_w)
- AM_RANGE(0x800000, 0x803fff) AM_MIRROR(0x7fc000) AM_ROM AM_REGION("bootrom", 0)
AM_RANGE(0xe10000, 0xe10007) AM_DEVREADWRITE8("wd2797", wd_fdc_device_base, read, write, 0x00ff)
AM_RANGE(0xe30000, 0xe30001) AM_READ(rtc_r)
AM_RANGE(0xe40000, 0xe40001) AM_WRITE(error_enable_w)
AM_RANGE(0xe41000, 0xe41001) AM_WRITE(parity_enable_w)
AM_RANGE(0xe42000, 0xe42001) AM_WRITE(bpplus_w)
AM_RANGE(0xe43000, 0xe43001) AM_WRITE(romlmap_w)
+ AM_RANGE(0x800000, 0x803fff) AM_MIRROR(0x7fc000) AM_ROM AM_REGION("bootrom", 0)
// e70000 / e70002 = keyboard 6850 status/control and Rx data / Tx data
ADDRESS_MAP_END