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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
// license:BSD-3-Clause
// copyright-holders:Fabio Priuli
/**********************************************************************
Nintendo Family Computer Konami Hyper Shot Controllers
**********************************************************************/
#include "emu.h"
#include "konamihs.h"
//**************************************************************************
// DEVICE DEFINITIONS
//**************************************************************************
DEFINE_DEVICE_TYPE(NES_KONAMIHS, nes_konamihs_device, "nes_konamihs", "Konami Hyper Shot Controller")
static INPUT_PORTS_START( nes_konamihs )
PORT_START("P1")
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON2 ) PORT_NAME("PI Run")
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_NAME("PI Jump")
PORT_START("P2")
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON2 ) PORT_NAME("PII Run")
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_NAME("PII Jump")
INPUT_PORTS_END
//-------------------------------------------------
// input_ports - device-specific input ports
//-------------------------------------------------
ioport_constructor nes_konamihs_device::device_input_ports() const
{
return INPUT_PORTS_NAME( nes_konamihs );
}
//**************************************************************************
// LIVE DEVICE
//**************************************************************************
//-------------------------------------------------
// nes_konamihs_device - constructor
//-------------------------------------------------
nes_konamihs_device::nes_konamihs_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
device_t(mconfig, NES_KONAMIHS, tag, owner, clock),
device_nes_control_port_interface(mconfig, *this),
m_ipt_p1(*this, "P1"),
m_ipt_p2(*this, "P2"),
m_latch_p1(0),
m_latch_p2(0)
{
}
//-------------------------------------------------
// device_start
//-------------------------------------------------
void nes_konamihs_device::device_start()
{
save_item(NAME(m_latch_p1));
save_item(NAME(m_latch_p2));
}
//-------------------------------------------------
// device_reset
//-------------------------------------------------
void nes_konamihs_device::device_reset()
{
m_latch_p1 = 0;
m_latch_p2 = 0;
}
//-------------------------------------------------
// read
//-------------------------------------------------
uint8_t nes_konamihs_device::read_exp(offs_t offset)
{
uint8_t ret = 0;
if (offset == 1) //$4017
{
ret |= m_latch_p1 << 1;
ret |= m_latch_p2 << 3;
}
return ret;
}
//-------------------------------------------------
// write
//-------------------------------------------------
void nes_konamihs_device::write(uint8_t data)
{
if ((data & 0x02) == 0)
m_latch_p1 = m_ipt_p1->read();
if ((data & 0x04) == 0)
m_latch_p2 = m_ipt_p2->read();
}
|