diff options
author | 2016-10-22 13:13:17 +0200 | |
---|---|---|
committer | 2016-10-22 13:13:17 +0200 | |
commit | ddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch) | |
tree | a70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/mame/audio/dave.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/mame/audio/dave.cpp')
-rw-r--r-- | src/mame/audio/dave.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/audio/dave.cpp b/src/mame/audio/dave.cpp index 138b8d9ac40..69a7f2aec6f 100644 --- a/src/mame/audio/dave.cpp +++ b/src/mame/audio/dave.cpp @@ -52,7 +52,7 @@ ADDRESS_MAP_END // dave_device - constructor //------------------------------------------------- -dave_device::dave_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) +dave_device::dave_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : device_t(mconfig, DAVE, "DAVE", tag, owner, clock, "dave", __FILE__), device_memory_interface(mconfig, *this), device_sound_interface(mconfig, *this), @@ -311,7 +311,7 @@ WRITE_LINE_MEMBER( dave_device::int2_w ) READ8_MEMBER( dave_device::program_r ) { - UINT8 segment = m_segment[offset >> 14]; + uint8_t segment = m_segment[offset >> 14]; offset = (segment << 14) | (offset & 0x3fff); return this->space(AS_PROGRAM).read_byte(offset); @@ -324,7 +324,7 @@ READ8_MEMBER( dave_device::program_r ) WRITE8_MEMBER( dave_device::program_w ) { - UINT8 segment = m_segment[offset >> 14]; + uint8_t segment = m_segment[offset >> 14]; offset = (segment << 14) | (offset & 0x3fff); this->space(AS_PROGRAM).write_byte(offset, data); @@ -337,7 +337,7 @@ WRITE8_MEMBER( dave_device::program_w ) READ8_MEMBER( dave_device::io_r ) { - UINT8 data = 0; + uint8_t data = 0; switch (offset & 0xff) { |