diff options
Diffstat (limited to 'src/devices/bus/coco/coco_232.cpp')
-rw-r--r-- | src/devices/bus/coco/coco_232.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/coco/coco_232.cpp b/src/devices/bus/coco/coco_232.cpp index a1b9c673c4b..e6b005756bf 100644 --- a/src/devices/bus/coco/coco_232.cpp +++ b/src/devices/bus/coco/coco_232.cpp @@ -41,7 +41,7 @@ const device_type COCO_232 = &device_creator<coco_232_device>; // coco_232_device - constructor //------------------------------------------------- -coco_232_device::coco_232_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) +coco_232_device::coco_232_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : device_t(mconfig, COCO_232, "CoCo RS-232 PAK", tag, owner, clock, "coco_232", __FILE__), device_cococart_interface( mconfig, *this ), m_uart(*this, UART_TAG) @@ -72,7 +72,7 @@ machine_config_constructor coco_232_device::device_mconfig_additions() const READ8_MEMBER(coco_232_device::read) { - UINT8 result = 0x00; + uint8_t result = 0x00; if ((offset >= 0x28) && (offset <= 0x2F)) result = m_uart->read(space, offset - 0x28); |