summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/lpci/vt82c505.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/lpci/vt82c505.cpp')
-rw-r--r--src/devices/bus/lpci/vt82c505.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/lpci/vt82c505.cpp b/src/devices/bus/lpci/vt82c505.cpp
index 15ba12b403b..a5adef41f5b 100644
--- a/src/devices/bus/lpci/vt82c505.cpp
+++ b/src/devices/bus/lpci/vt82c505.cpp
@@ -17,16 +17,16 @@
const device_type VT82C505 = &device_creator<vt82c505_device>;
-vt82c505_device::vt82c505_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
+vt82c505_device::vt82c505_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, VT82C505, "VIA VT82C505 PCI bridge", tag, owner, clock, "vt82c505", __FILE__),
pci_device_interface( mconfig, *this )
{
}
-UINT32 vt82c505_device::pci_read(pci_bus_device *pcibus, int function, int offset, UINT32 mem_mask)
+uint32_t vt82c505_device::pci_read(pci_bus_device *pcibus, int function, int offset, uint32_t mem_mask)
{
- UINT32 result = 0;
+ uint32_t result = 0;
if (function != 0)
return result;
@@ -48,7 +48,7 @@ UINT32 vt82c505_device::pci_read(pci_bus_device *pcibus, int function, int offse
return result;
}
-void vt82c505_device::pci_write(pci_bus_device *pcibus, int function, int offset, UINT32 data, UINT32 mem_mask)
+void vt82c505_device::pci_write(pci_bus_device *pcibus, int function, int offset, uint32_t data, uint32_t mem_mask)
{
if (function != 0)
return;