mirror of
https://github.com/holub/mame
synced 2025-06-04 11:56:28 +03:00
48 lines
1.5 KiB
C
48 lines
1.5 KiB
C
/**********************************************************************
|
|
|
|
Diag264 User Port Loop Back Connector emulation
|
|
|
|
Copyright MESS Team.
|
|
Visit http://mamedev.org for licensing and usage restrictions.
|
|
|
|
**********************************************************************/
|
|
|
|
#include "diag264_lb_user.h"
|
|
|
|
|
|
|
|
//**************************************************************************
|
|
// DEVICE DEFINITIONS
|
|
//**************************************************************************
|
|
|
|
const device_type DIAG264_USER_PORT_LOOPBACK = &device_creator<diag264_user_port_loopback_device>;
|
|
|
|
|
|
|
|
//**************************************************************************
|
|
// LIVE DEVICE
|
|
//**************************************************************************
|
|
|
|
//-------------------------------------------------
|
|
// diag264_user_port_loopback_device - constructor
|
|
//-------------------------------------------------
|
|
|
|
diag264_user_port_loopback_device::diag264_user_port_loopback_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
|
: device_t(mconfig, DIAG264_USER_PORT_LOOPBACK, "Diag264 User Port Loopback", tag, owner, clock),
|
|
device_plus4_user_port_interface(mconfig, *this),
|
|
m_p(0),
|
|
m_txd(0),
|
|
m_rts(0),
|
|
m_dtr(0)
|
|
{
|
|
}
|
|
|
|
|
|
//-------------------------------------------------
|
|
// device_start - device-specific startup
|
|
//-------------------------------------------------
|
|
|
|
void diag264_user_port_loopback_device::device_start()
|
|
{
|
|
}
|