trunk/src/mame/audio/8080bw.c
| r19646 | r19647 | |
| 704 | 704 | |
| 705 | 705 | coin_lockout_global_w(machine(), data & 0x04); /* SX8 */ |
| 706 | 706 | |
| 707 | | m_c8080bw_flip_screen = BIT(data, 5) & BIT(ioport(CABINET_PORT_TAG)->read(), 0); /* SX11 */ |
| 707 | m_c8080bw_flip_screen = BIT(data, 5) & BIT(ioport("IN2")->read(), 2); /* SX11 */ |
| 708 | 708 | |
| 709 | 709 | /* 0x01 - SX6 - Plane Down */ |
| 710 | 710 | discrete_sound_w(m_discrete, space, POLARIS_SX6_EN, data & 0x01); |
trunk/src/mame/drivers/8080bw.c
| r19646 | r19647 | |
| 1227 | 1227 | // Name Reset - if name of high scorer was rude, owner can press this button |
| 1228 | 1228 | PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Name Reset") PORT_CODE(KEYCODE_F1) |
| 1229 | 1229 | PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_TILT ) |
| 1230 | | PORT_DIPNAME( 0x40, 0x00, "Cabinet" ) PORT_DIPLOCATION("SW1:6") |
| 1231 | | PORT_DIPSETTING( 0x00, "Upright" ) |
| 1232 | | PORT_DIPSETTING( 0x40, "Cocktail" ) |
| 1230 | PORT_DIPNAME( 0x40, 0x00, DEF_STR( Cabinet ) ) PORT_DIPLOCATION("SW1:6") |
| 1231 | PORT_DIPSETTING( 0x00, DEF_STR( Upright ) ) |
| 1232 | PORT_DIPSETTING( 0x40, DEF_STR( Cocktail ) ) |
| 1233 | 1233 | PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_UNUSED ) |
| 1234 | 1234 | |
| 1235 | 1235 | PORT_START("VR1") |
| r19646 | r19647 | |
| 1670 | 1670 | PORT_DIPSETTING( 0x01, "4" ) |
| 1671 | 1671 | PORT_DIPSETTING( 0x02, "5" ) |
| 1672 | 1672 | PORT_DIPSETTING( 0x03, "6" ) |
| 1673 | | /* 0x04 should be Cabinet - Upright/Cocktail, |
| 1674 | | but until the cocktail hack is changed, |
| 1675 | | this will have to do. */ |
| 1676 | | PORT_DIPNAME( 0x04, 0x00, "Number of Controls" ) PORT_DIPLOCATION("SW1:3") |
| 1677 | | PORT_DIPSETTING( 0x00, "1" ) |
| 1678 | | PORT_DIPSETTING( 0x04, "2" ) |
| 1673 | PORT_DIPNAME( 0x04, 0x00, DEF_STR( Cabinet ) ) PORT_DIPLOCATION("SW1:3") |
| 1674 | PORT_DIPSETTING( 0x00, DEF_STR( Upright ) ) |
| 1675 | PORT_DIPSETTING( 0x04, DEF_STR( Cocktail ) ) |
| 1679 | 1676 | PORT_DIPNAME( 0x08, 0x00, "Invincible Test" ) PORT_DIPLOCATION("SW1:4") |
| 1680 | 1677 | PORT_DIPSETTING( 0x00, DEF_STR( Off ) ) |
| 1681 | 1678 | PORT_DIPSETTING( 0x08, DEF_STR( On ) ) |
| r19646 | r19647 | |
| 1690 | 1687 | PORT_DIPSETTING( 0x00, DEF_STR( Off ) ) |
| 1691 | 1688 | PORT_DIPSETTING( 0x80, DEF_STR( On ) ) |
| 1692 | 1689 | |
| 1693 | | /* Dummy port for cocktail mode */ |
| 1694 | | INVADERS_CAB_TYPE_PORT |
| 1695 | | |
| 1696 | 1690 | PORT_START("VR1") |
| 1697 | 1691 | PORT_ADJUSTER( 80, "Sub Volume VR1" ) |
| 1698 | 1692 | |