summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/sat_ctrl/segatap.cpp
blob: baaa52071ed235d5d757e9cdfb77c90011eb25c0 (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
// 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::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)
{
}


void saturn_segatap_device::device_start()
{
}

void saturn_segatap_device::device_add_mconfig(machine_config &config)
{
	for (auto &port : m_subctrl_port)
		SATURN_CONTROL_PORT(config, port, saturn_joys, "joypad");
}


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

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