diff options
Diffstat (limited to 'src/devices/machine/com8116.cpp')
-rw-r--r-- | src/devices/machine/com8116.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/com8116.cpp b/src/devices/machine/com8116.cpp index f5c177fef62..84d638c02a7 100644 --- a/src/devices/machine/com8116.cpp +++ b/src/devices/machine/com8116.cpp @@ -87,7 +87,7 @@ const int com8116_device::divisors_16X_4_9152MHz_SY2661_2[] = // com8116_device - constructor //------------------------------------------------- -com8116_device::com8116_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : +com8116_device::com8116_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : device_t(mconfig, COM8116, "COM8116", tag, owner, clock, "com8116", __FILE__), m_fx4_handler(*this), m_fr_handler(*this), @@ -165,7 +165,7 @@ void com8116_device::device_timer(emu_timer &timer, device_timer_id id, int para // str_w - //------------------------------------------------- -void com8116_device::str_w(UINT8 data) +void com8116_device::str_w(uint8_t data) { int fr_divider = data & 0x0f; int fr_clock = clock() / m_fr_divisors[fr_divider]; @@ -185,7 +185,7 @@ WRITE8_MEMBER( com8116_device::str_w ) // stt_w - //------------------------------------------------- -void com8116_device::stt_w(UINT8 data) +void com8116_device::stt_w(uint8_t data) { int ft_divider = data & 0x0f; int ft_clock = clock() / m_ft_divisors[ft_divider]; |