mirror of
https://github.com/holub/mame
synced 2025-04-19 15:11:37 +03:00
poundfor: 0x40 is bit 6, not bit 5
This commit is contained in:
parent
5976fad37d
commit
4aca01d1a3
@ -1507,16 +1507,16 @@ static INPUT_PORTS_START( poundfor )
|
||||
IREM_COIN_MODE_2_HIGH
|
||||
|
||||
PORT_START("TRACK0_X")
|
||||
PORT_BIT( 0x0fff, 0x0000, IPT_TRACKBALL_X ) PORT_SENSITIVITY(50) PORT_KEYDELTA(30) PORT_PLAYER(1)
|
||||
PORT_BIT( 0x0fff, 0x0000, IPT_TRACKBALL_X ) PORT_SENSITIVITY(100) PORT_KEYDELTA(25) PORT_PLAYER(1)
|
||||
|
||||
PORT_START("TRACK0_Y")
|
||||
PORT_BIT( 0x0fff, 0x0000, IPT_TRACKBALL_Y ) PORT_SENSITIVITY(50) PORT_KEYDELTA(30) PORT_REVERSE PORT_PLAYER(1)
|
||||
PORT_BIT( 0x0fff, 0x0000, IPT_TRACKBALL_Y ) PORT_SENSITIVITY(100) PORT_KEYDELTA(25) PORT_REVERSE PORT_PLAYER(1)
|
||||
|
||||
PORT_START("TRACK1_X")
|
||||
PORT_BIT( 0x0fff, 0x0000, IPT_TRACKBALL_X ) PORT_SENSITIVITY(50) PORT_KEYDELTA(30) PORT_REVERSE PORT_PLAYER(2)
|
||||
PORT_BIT( 0x0fff, 0x0000, IPT_TRACKBALL_X ) PORT_SENSITIVITY(100) PORT_KEYDELTA(25) PORT_REVERSE PORT_PLAYER(2)
|
||||
|
||||
PORT_START("TRACK1_Y")
|
||||
PORT_BIT( 0x0fff, 0x0000, IPT_TRACKBALL_Y ) PORT_SENSITIVITY(50) PORT_KEYDELTA(30) PORT_PLAYER(2)
|
||||
PORT_BIT( 0x0fff, 0x0000, IPT_TRACKBALL_Y ) PORT_SENSITIVITY(100) PORT_KEYDELTA(25) PORT_PLAYER(2)
|
||||
INPUT_PORTS_END
|
||||
|
||||
static INPUT_PORTS_START( airduel )
|
||||
|
@ -363,11 +363,11 @@ void m72_state::rtype2_port02_w(u8 data)
|
||||
|
||||
void poundfor_state::poundfor_port02_w(u8 data)
|
||||
{
|
||||
// bit 5 resets both uPD4701A?
|
||||
m_upd4701[0]->resetx_w(BIT(data, 5));
|
||||
m_upd4701[0]->resety_w(BIT(data, 5));
|
||||
m_upd4701[1]->resetx_w(BIT(data, 5));
|
||||
m_upd4701[1]->resety_w(BIT(data, 5));
|
||||
// bit 6 resets both uPD4701A?
|
||||
m_upd4701[0]->resetx_w(BIT(data, 6));
|
||||
m_upd4701[0]->resety_w(BIT(data, 6));
|
||||
m_upd4701[1]->resetx_w(BIT(data, 6));
|
||||
m_upd4701[1]->resety_w(BIT(data, 6));
|
||||
|
||||
rtype2_port02_w(data & 0xbf);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user