summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/blockout.c
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2011-04-28 01:58:13 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2011-04-28 01:58:13 +0000
commitb40ca1be7968092cb0480a91fe640de802d5a00a (patch)
tree26f6dac696da903d7e6e35b12d46ee8aab03523b /src/mame/drivers/blockout.c
parent1ce1e3c39ca980e055a4da682a60815319ce3b0c (diff)
WIP code removal
Diffstat (limited to 'src/mame/drivers/blockout.c')
-rw-r--r--src/mame/drivers/blockout.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/mame/drivers/blockout.c b/src/mame/drivers/blockout.c
index 786d6317e31..bdef2f55408 100644
--- a/src/mame/drivers/blockout.c
+++ b/src/mame/drivers/blockout.c
@@ -140,11 +140,6 @@ ADDRESS_MAP_END
*
*************************************/
-static INPUT_CHANGED( coin_inserted )
-{
- cputag_set_input_line(field->port->machine(), "maincpu", 5, newval ? CLEAR_LINE : ASSERT_LINE);
-}
-
static INPUT_PORTS_START( blockout )
PORT_START("P1")
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_8WAY
@@ -167,9 +162,9 @@ static INPUT_PORTS_START( blockout )
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_START2 )
PORT_START("SYSTEM")
- PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_COIN1 ) PORT_CHANGED(coin_inserted,0)
- PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_COIN2 ) PORT_CHANGED(coin_inserted,0)
- PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_COIN3 ) PORT_CHANGED(coin_inserted,0)
+ PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_COIN1 )
+ PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_COIN2 )
+ PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_COIN3 )
PORT_START("DSW1")
PORT_DIPNAME( 0x03, 0x03, DEF_STR( Coinage ) ) PORT_DIPLOCATION("SW1:1,2")