summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/aakart.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/aakart.cpp')
-rw-r--r--src/devices/machine/aakart.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/aakart.cpp b/src/devices/machine/aakart.cpp
index c7b9e260243..cd39e31bf0c 100644
--- a/src/devices/machine/aakart.cpp
+++ b/src/devices/machine/aakart.cpp
@@ -39,7 +39,7 @@ const device_type AAKART = &device_creator<aakart_device>;
// aakart_device - constructor
//-------------------------------------------------
-aakart_device::aakart_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
+aakart_device::aakart_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, AAKART, "AAKART", tag, owner, clock, "aakart", __FILE__), m_rxtimer(nullptr), m_txtimer(nullptr), m_mousetimer(nullptr), m_keybtimer(nullptr),
m_out_tx_cb(*this),
m_out_rx_cb(*this), m_tx_latch(0), m_rx(0), m_new_command(0), m_status(0), m_mouse_enable(0), m_keyb_enable(0), m_keyb_row(0), m_keyb_col(0), m_keyb_state(0)
@@ -178,7 +178,7 @@ WRITE8_MEMBER( aakart_device::write )
m_new_command |= 1;
}
-void aakart_device::send_keycode_down(UINT8 row, UINT8 col)
+void aakart_device::send_keycode_down(uint8_t row, uint8_t col)
{
//printf("keycode down\n");
m_keyb_row = row | 0xc0;
@@ -186,7 +186,7 @@ void aakart_device::send_keycode_down(UINT8 row, UINT8 col)
m_keyb_state = 1;
}
-void aakart_device::send_keycode_up(UINT8 row, UINT8 col)
+void aakart_device::send_keycode_up(uint8_t row, uint8_t col)
{
//printf("keycode up\n");
m_keyb_row = row | 0xd0;