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/video/dm9368.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/video/dm9368.cpp')
-rw-r--r-- | src/devices/video/dm9368.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/video/dm9368.cpp b/src/devices/video/dm9368.cpp index 16dee4e420f..2b6502782bd 100644 --- a/src/devices/video/dm9368.cpp +++ b/src/devices/video/dm9368.cpp @@ -25,7 +25,7 @@ const device_type DM9368 = &device_creator<dm9368_device>; #define LOG 0 -const UINT8 dm9368_device::m_segment_data[16] = +const uint8_t dm9368_device::m_segment_data[16] = { 0x3f, 0x06, 0x5b, 0x4f, 0x66, 0x6d, 0x7d, 0x07, 0x7f, 0x67, 0x77, 0x7c, 0x39, 0x5e, 0x79, 0x71 }; @@ -40,7 +40,7 @@ const UINT8 dm9368_device::m_segment_data[16] = // dm9368_device - constructor //------------------------------------------------- -dm9368_device::dm9368_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : +dm9368_device::dm9368_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : device_t(mconfig, DM9368, "DM9368 7-Segment Decoder", tag, owner, clock, "dm9368", __FILE__), device_output_interface(mconfig, *this), m_write_rbo(*this), @@ -69,10 +69,10 @@ void dm9368_device::device_start() // a_w - //------------------------------------------------- -void dm9368_device::a_w(UINT8 data) +void dm9368_device::a_w(uint8_t data) { int a = data & 0x0f; - UINT8 value = 0; + uint8_t value = 0; if (!m_rbi && !a) { |