trunk/src/mess/drivers/uzebox.c
| r20017 | r20018 | |
| 120 | 120 | // ---- ---x AD725 HSYNC |
| 121 | 121 | |
| 122 | 122 | // AD725 CE is hard-wired to VCC in early revisions (C1, D1 and E1) |
| 123 | | //if (m_port_b & 0x10) |
| 123 | if ((m_port_b & 0x10) || ioport("AD725_CE")->read() == 0) |
| 124 | 124 | if ((m_port_b ^ data) & m_port_b & 0x01) |
| 125 | 125 | { |
| 126 | 126 | line_update(); |
| r20017 | r20018 | |
| 229 | 229 | PORT_BIT( 0x0400, IP_ACTIVE_LOW, IPT_BUTTON5 ) PORT_NAME("P2 Button L") PORT_PLAYER(2) |
| 230 | 230 | PORT_BIT( 0x0800, IP_ACTIVE_LOW, IPT_BUTTON6 ) PORT_NAME("P2 Button R") PORT_PLAYER(2) |
| 231 | 231 | PORT_BIT( 0xf000, IP_ACTIVE_LOW, IPT_UNUSED ) |
| 232 | |
| 233 | PORT_START("AD725_CE") |
| 234 | PORT_CONFNAME( 0x01, 0x00, "AD725 CE" ) |
| 235 | PORT_CONFSETTING( 0x00, "VCC" ) |
| 236 | PORT_CONFSETTING( 0x01, "PB4" ) |
| 232 | 237 | INPUT_PORTS_END |
| 233 | 238 | |
| 234 | 239 | /****************************************************\ |