diff options
Diffstat (limited to 'src/devices/bus/rs232/terminal.cpp')
-rw-r--r-- | src/devices/bus/rs232/terminal.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/rs232/terminal.cpp b/src/devices/bus/rs232/terminal.cpp index b56071b2bee..d4e0911825e 100644 --- a/src/devices/bus/rs232/terminal.cpp +++ b/src/devices/bus/rs232/terminal.cpp @@ -2,7 +2,7 @@ // copyright-holders:smf #include "terminal.h" -serial_terminal_device::serial_terminal_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) +serial_terminal_device::serial_terminal_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : generic_terminal_device(mconfig, SERIAL_TERMINAL, "Serial Terminal", tag, owner, clock, "serial_terminal", __FILE__) , device_buffered_serial_interface(mconfig, *this) , device_rs232_port_interface(mconfig, *this) @@ -77,7 +77,7 @@ void serial_terminal_device::device_timer(emu_timer &timer, device_timer_id id, device_buffered_serial_interface::device_timer(timer, id, param, ptr); } -void serial_terminal_device::send_key(UINT8 code) +void serial_terminal_device::send_key(uint8_t code) { transmit_byte(code); } @@ -87,7 +87,7 @@ void serial_terminal_device::tra_callback() output_rxd(transmit_register_get_data_bit()); } -void serial_terminal_device::received_byte(UINT8 byte) +void serial_terminal_device::received_byte(uint8_t byte) { term_write(byte); } |