From d05005ca67cb14629235ed74cb7a6a79d42aeed7 Mon Sep 17 00:00:00 2001 From: Ted Green Date: Wed, 18 May 2016 07:40:28 -0600 Subject: [PATCH] (nw) Fixed address map range for BAR config --- src/devices/machine/pci-ide.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/machine/pci-ide.cpp b/src/devices/machine/pci-ide.cpp index 5e89535d13c..fe54b7595b5 100644 --- a/src/devices/machine/pci-ide.cpp +++ b/src/devices/machine/pci-ide.cpp @@ -13,7 +13,7 @@ ide_pci_device::ide_pci_device(const machine_config &mconfig, const char *tag, d } DEVICE_ADDRESS_MAP_START(config_map, 32, ide_pci_device) - AM_RANGE(0x10, 0x17) AM_WRITE(address_base_w) + AM_RANGE(0x10, 0x1f) AM_WRITE(address_base_w) AM_RANGE(0x40, 0x5f) AM_READWRITE(pcictrl_r, pcictrl_w) AM_INHERIT_FROM(pci_device::config_map) ADDRESS_MAP_END