summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/kb3600.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/kb3600.cpp')
-rw-r--r--src/devices/machine/kb3600.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/machine/kb3600.cpp b/src/devices/machine/kb3600.cpp
index ca5fb5e7e76..fdb5f2ec429 100644
--- a/src/devices/machine/kb3600.cpp
+++ b/src/devices/machine/kb3600.cpp
@@ -42,7 +42,7 @@ const device_type AY3600 = &device_creator<ay3600_device>;
// ay3600_device - constructor
//-------------------------------------------------
-ay3600_device::ay3600_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
+ay3600_device::ay3600_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, AY3600, "AY-5-3600", tag, owner, clock, "ay3600", __FILE__),
m_read_x0(*this),
m_read_x1(*this),
@@ -116,7 +116,7 @@ void ay3600_device::device_timer(emu_timer &timer, device_timer_id id, int param
for (int x = 0; x < 9; x++)
{
- UINT16 data = 0;
+ uint16_t data = 0;
switch(x)
{
@@ -191,9 +191,9 @@ void ay3600_device::device_timer(emu_timer &timer, device_timer_id id, int param
// b_r -
//-------------------------------------------------
-UINT16 ay3600_device::b_r()
+uint16_t ay3600_device::b_r()
{
- UINT16 data = m_b;
+ uint16_t data = m_b;
m_write_data_ready(0);