summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/sat_ctrl/segatap.cpp
blob: e36400125fe767d332f9dd69a724843f87e01ffc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// license:BSD-3-Clause
// copyright-holders:Fabio Priuli
/**********************************************************************

    Sega Saturn SegaTap / Team Player emulation

**********************************************************************/

#include "emu.h"
#include "segatap.h"



//**************************************************************************
//  DEVICE DEFINITIONS
//**************************************************************************

DEFINE_DEVICE_TYPE(SATURN_SEGATAP, saturn_segatap_device, "saturn_segatap", "saturn_segatap_device")


//**************************************************************************
//  LIVE DEVICE
//**************************************************************************

//-------------------------------------------------
//  saturn_segatap_device - constructor
//-------------------------------------------------

saturn_segatap_device::saturn_segatap_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
	: device_t(mconfig, SATURN_SEGATAP, tag, owner, clock)
	, device_saturn_control_port_interface(mconfig, *this)
	, m_subctrl_port(*this, "ctrl%u", 1U)
{
}


//-------------------------------------------------
//  device_start - device-specific startup
//-------------------------------------------------

void saturn_segatap_device::device_start()
{
	for (int i = 0; i < 4; i++)
		m_subctrl_port[i]->device_start();
}

//-------------------------------------------------
//  device_reset - device-specific reset
//-------------------------------------------------

void saturn_segatap_device::device_reset()
{
}

//-------------------------------------------------
//  read_ctrl
//-------------------------------------------------

uint8_t saturn_segatap_device::read_ctrl(uint8_t offset)
{
	return m_subctrl_port[offset < 8 ? (offset >> 1) : 0]->read_ctrl(offset & 1);
}

//-------------------------------------------------
//  read_id
//-------------------------------------------------

uint8_t saturn_segatap_device::read_id(int idx)
{
	return m_subctrl_port[idx < 4 ? idx : 0]->read_id(0);
}


void saturn_segatap_device::device_add_mconfig(machine_config &config)
{
	SATURN_CONTROL_PORT(config, m_subctrl_port[0], saturn_joys, "joypad");
	SATURN_CONTROL_PORT(config, m_subctrl_port[1], saturn_joys, "joypad");
	SATURN_CONTROL_PORT(config, m_subctrl_port[2], saturn_joys, "joypad");
	SATURN_CONTROL_PORT(config, m_subctrl_port[3], saturn_joys, "joypad");
}