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/sound/cdp1863.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/sound/cdp1863.cpp')
-rw-r--r-- | src/devices/sound/cdp1863.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/sound/cdp1863.cpp b/src/devices/sound/cdp1863.cpp index 63515aa7c43..c85a55ee4a5 100644 --- a/src/devices/sound/cdp1863.cpp +++ b/src/devices/sound/cdp1863.cpp @@ -46,7 +46,7 @@ const device_type CDP1863 = &device_creator<cdp1863_device>; // cdp1863_device - constructor //------------------------------------------------- -cdp1863_device::cdp1863_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) +cdp1863_device::cdp1863_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : device_t(mconfig, CDP1863, "CDP1863", tag, owner, clock, "cdp1863", __FILE__), device_sound_interface(mconfig, *this), m_stream(nullptr), @@ -97,7 +97,7 @@ void cdp1863_device::sound_stream_update(sound_stream &stream, stream_sample_t * // reset the output stream memset(outputs[0], 0, samples * sizeof(*outputs[0])); - INT16 signal = m_signal; + int16_t signal = m_signal; stream_sample_t *buffer = outputs[0]; memset( buffer, 0, samples * sizeof(*buffer) ); @@ -162,7 +162,7 @@ WRITE8_MEMBER( cdp1863_device::str_w ) // str_w - latch write //------------------------------------------------- -void cdp1863_device::str_w(UINT8 data) +void cdp1863_device::str_w(uint8_t data) { m_latch = data; } |