From ddb290d5f615019c33c42b8d94e5a5254cabcf33 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sat, 22 Oct 2016 13:13:17 +0200 Subject: 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 --- src/devices/sound/cdp1863.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/devices/sound/cdp1863.h') diff --git a/src/devices/sound/cdp1863.h b/src/devices/sound/cdp1863.h index 738d6368e5f..6890490fe53 100644 --- a/src/devices/sound/cdp1863.h +++ b/src/devices/sound/cdp1863.h @@ -47,13 +47,13 @@ class cdp1863_device : public device_t, { public: // construction/destruction - cdp1863_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + cdp1863_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); // inline configuration helpers static void static_set_clock2(device_t &device, int clock2); DECLARE_WRITE8_MEMBER( str_w ); - void str_w(UINT8 data); + void str_w(uint8_t data); DECLARE_WRITE_LINE_MEMBER( oe_w ); @@ -76,7 +76,7 @@ private: // sound state int m_oe; // output enable int m_latch; // sound latch - INT16 m_signal; // current signal + int16_t m_signal; // current signal int m_incr; // initial wave state }; -- cgit v1.2.3-70-g09d2