summaryrefslogtreecommitdiffstats
path: root/src/devices/machine/pci.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/pci.cpp')
-rw-r--r--src/devices/machine/pci.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/pci.cpp b/src/devices/machine/pci.cpp
index c10a58306a8..dd8e767f5a8 100644
--- a/src/devices/machine/pci.cpp
+++ b/src/devices/machine/pci.cpp
@@ -150,7 +150,7 @@ WRITE32_MEMBER(pci_device::address_base_w)
if(bank_reg_infos[offset].hi)
bank_infos[bid].adr = (bank_infos[bid].adr & 0xffffffff) | (uint64_t(data) << 32);
else {
- bank_infos[bid].adr = (bank_infos[bid].adr & U64(0xffffffff00000000)) | data;
+ bank_infos[bid].adr = (bank_infos[bid].adr & 0xffffffff00000000U) | data;
}
remap_cb();
}