diff options
| author | 2008-03-24 01:49:05 +0000 | |
|---|---|---|
| committer | 2008-03-24 01:49:05 +0000 | |
| commit | b16332a024efd5fc1ae1add246fc37fc8ac2dcea (patch) | |
| tree | fe1d7b7b78617a64d6cd9c614a1d7f5957ec6cde | |
| parent | 07ed6b77b8920ef41586771ea0834fb0e30049af (diff) | |
From: Luigi30 [mailto:luigi30@gmail.com]
Subject: 1564 fix
I changed Service 3 to Service 2. The only other button that could be Service 2 (labeled unused) gives a NOT USED in service mode.
| -rw-r--r-- | src/mame/drivers/hyhoo.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/hyhoo.c b/src/mame/drivers/hyhoo.c index 451a56be1c3..b3226c71d8e 100644 --- a/src/mame/drivers/hyhoo.c +++ b/src/mame/drivers/hyhoo.c @@ -140,9 +140,9 @@ static INPUT_PORTS_START( hyhoo ) PORT_START /* (2) PORT 0 */ PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_UNUSED ) // DRAW BUSY - PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_UNUSED ) // + PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_UNUSED ) // NOT USED PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_SERVICE1 ) // SERVICE - PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_SERVICE3 ) // MEMORY RESET + PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_SERVICE2 ) PORT_NAME("Memory Reset") // MEMORY RESET PORT_SERVICE( 0x10, IP_ACTIVE_LOW ) // TEST PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_COIN1 ) // COIN1 PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_UNUSED ) // NOT USED @@ -215,9 +215,9 @@ static INPUT_PORTS_START( hyhoo2 ) PORT_START /* (2) PORT 0 */ PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_UNUSED ) // DRAW BUSY - PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_UNUSED ) // + PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_UNUSED ) // NOT USED PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_SERVICE1 ) // SERVICE - PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_SERVICE3 ) // MEMORY RESET + PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_SERVICE2 ) PORT_NAME("Memory Reset") // MEMORY RESET PORT_SERVICE( 0x10, IP_ACTIVE_LOW ) // TEST PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_COIN1 ) // COIN1 PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_UNUSED ) // NOT USED |
