trunk/src/mess/drivers/tc4.c
| r243639 | r243640 | |
| 8 | 8 | This is a head to head electronic tabletop LED-display sports console. |
| 9 | 9 | One cartridge(Football) was included with the console, the other three were |
| 10 | 10 | sold separately. Gameplay has emphasis on strategy, read the official manual |
| 11 | | on how to play. Remember that you can rotate the view in MESS: rotate left |
| 12 | | for Home(P1) orientation, rotate right for Visitor(P2) orientation. |
| 11 | on how to play. Remember that you can rotate the view in MESS. |
| 13 | 12 | |
| 13 | Available cartridges: |
| 14 | - Football |
| 15 | - Basketball |
| 16 | - Hockey |
| 17 | - Soccer |
| 18 | |
| 14 | 19 | Cartridge socket: |
| 15 | 20 | 1 N/C |
| 16 | 21 | 2 9V+ |
| r243639 | r243640 | |
| 21 | 26 | 7 K1 |
| 22 | 27 | 8 R9 |
| 23 | 28 | |
| 24 | | The cartridge connects pin 8 with one of the K-pins. |
| 29 | Football cartridge connects pins 4 and 8 |
| 25 | 30 | |
| 26 | | Available cartridges: |
| 27 | | - Football (K8, confirmed) |
| 28 | | - Hockey (K4?) |
| 29 | | - Soccer (K2?) |
| 30 | | - Basketball (K1?) |
| 31 | 31 | |
| 32 | | |
| 33 | 32 | TODO: |
| 34 | 33 | - pin configuration of other carts is guessed |
| 35 | | - softlist for the cartridges? |
| 36 | 34 | - offsensive players leds are supposed to look brighter |
| 37 | 35 | - MCU clock is unknown |
| 38 | 36 | |
| r243639 | r243640 | |
| 240 | 238 | PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_BUTTON4 ) PORT_PLAYER(2) PORT_NAME("P2 D/K Button") |
| 241 | 239 | |
| 242 | 240 | PORT_START("IN.6") // R9 |
| 243 | | PORT_CONFNAME( 0x0f, 0x08, "Cartridge") |
| 244 | | PORT_CONFSETTING( 0x01, "Basketball" ) |
| 245 | | PORT_CONFSETTING( 0x02, "Soccer" ) |
| 246 | | PORT_CONFSETTING( 0x04, "Hockey" ) |
| 247 | | PORT_CONFSETTING( 0x08, "Football" ) |
| 241 | PORT_DIPUNKNOWN_DIPLOC( 0x01, 0x00, "R9:1" ) |
| 242 | PORT_DIPUNKNOWN_DIPLOC( 0x02, 0x00, "R9:2" ) |
| 243 | PORT_DIPUNKNOWN_DIPLOC( 0x04, 0x00, "R9:3" ) |
| 244 | PORT_DIPUNKNOWN_DIPLOC( 0x08, 0x00, "R9:4" ) |
| 248 | 245 | INPUT_PORTS_END |
| 249 | 246 | |
| 250 | 247 | |
| r243639 | r243640 | |
| 314 | 311 | ROM_END |
| 315 | 312 | |
| 316 | 313 | |
| 317 | | CONS( 1981, tc4, 0, 0, tc4, tc4, driver_device, 0, "Coleco", "Total Control 4", GAME_SUPPORTS_SAVE ) |
| 314 | CONS( 1981, tc4, 0, 0, tc4, tc4, driver_device, 0, "Coleco", "Total Control 4", GAME_NOT_WORKING | GAME_SUPPORTS_SAVE ) |