diff options
Diffstat (limited to 'src/mess/machine/coco_232.c')
-rw-r--r-- | src/mess/machine/coco_232.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mess/machine/coco_232.c b/src/mess/machine/coco_232.c index 7ff00e21bba..e4d0a7a176d 100644 --- a/src/mess/machine/coco_232.c +++ b/src/mess/machine/coco_232.c @@ -14,7 +14,7 @@ CONSTANTS ***************************************************************************/ -#define UART_TAG "uart" +#define UART_TAG "uart" /*************************************************************************** IMPLEMENTATION @@ -39,9 +39,9 @@ const device_type COCO_232 = &device_creator<coco_232_device>; //------------------------------------------------- coco_232_device::coco_232_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, COCO_232, "CoCo RS-232 PAK", tag, owner, clock), + : device_t(mconfig, COCO_232, "CoCo RS-232 PAK", tag, owner, clock), device_cococart_interface( mconfig, *this ), - m_uart(*this, UART_TAG) + m_uart(*this, UART_TAG) { } |