diff options
author | 2016-10-22 13:13:17 +0200 | |
---|---|---|
committer | 2016-10-22 13:13:17 +0200 | |
commit | ddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch) | |
tree | a70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/devices/machine/pci-smbus.cpp | |
parent | 333bff8de64dfaeb98134000412796b4fdef970b (diff) |
NOTICE (TYPE NAME CONSOLIDATION)
Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8
also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8
Diffstat (limited to 'src/devices/machine/pci-smbus.cpp')
-rw-r--r-- | src/devices/machine/pci-smbus.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/pci-smbus.cpp b/src/devices/machine/pci-smbus.cpp index 13d4d491570..fc6d589b64e 100644 --- a/src/devices/machine/pci-smbus.cpp +++ b/src/devices/machine/pci-smbus.cpp @@ -26,7 +26,7 @@ DEVICE_ADDRESS_MAP_START(map, 32, smbus_device) AM_RANGE(0x14, 0x17) AM_READ8 (notify_dhigh_r, 0xff000000) ADDRESS_MAP_END -smbus_device::smbus_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) +smbus_device::smbus_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : pci_device(mconfig, SMBUS, "SMBUS interface", tag, owner, clock, "smbus", __FILE__) { } @@ -86,7 +86,7 @@ WRITE8_MEMBER (smbus_device::hst_cnt_w) if(xmit_slva != 0xa1) hst_sts = 4; else { - const UINT8 eeprom[256] = { + const uint8_t eeprom[256] = { 0x80, 0x08, 0x07, 0x0D, 0x0A, 0x02, 0x40, 0x00, 0x04, 0x50, 0x60, 0x00, 0x82, 0x08, 0x00, 0x01, 0x0E, 0x04, 0x08, 0x01, 0x02, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x28, 0x3C, 0x28, 0x40, 0x60, 0x60, 0x40, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x37, 0x46, 0x28, 0x28, 0x55, 0x00, 0x00, |