trunk/src/mess/drivers/tc4.c
| r243640 | r243641 | |
| 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. |
| 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. |
| 12 | 13 | |
| 13 | | Available cartridges: |
| 14 | | - Football |
| 15 | | - Basketball |
| 16 | | - Hockey |
| 17 | | - Soccer |
| 18 | | |
| 19 | 14 | Cartridge socket: |
| 20 | 15 | 1 N/C |
| 21 | 16 | 2 9V+ |
| r243640 | r243641 | |
| 26 | 21 | 7 K1 |
| 27 | 22 | 8 R9 |
| 28 | 23 | |
| 29 | | Football cartridge connects pins 4 and 8 |
| 24 | The cartridge connects pin 8 with one of the K-pins. |
| 30 | 25 | |
| 26 | Available cartridges: |
| 27 | - Football (K8, confirmed) |
| 28 | - Hockey (K4?) |
| 29 | - Soccer (K2?) |
| 30 | - Basketball (K1?) |
| 31 | 31 | |
| 32 | |
| 32 | 33 | TODO: |
| 33 | 34 | - pin configuration of other carts is guessed |
| 35 | - softlist for the cartridges? |
| 34 | 36 | - offsensive players leds are supposed to look brighter |
| 35 | 37 | - MCU clock is unknown |
| 36 | 38 | |
| r243640 | r243641 | |
| 238 | 240 | PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_BUTTON4 ) PORT_PLAYER(2) PORT_NAME("P2 D/K Button") |
| 239 | 241 | |
| 240 | 242 | PORT_START("IN.6") // R9 |
| 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" ) |
| 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" ) |
| 245 | 248 | INPUT_PORTS_END |
| 246 | 249 | |
| 247 | 250 | |
| r243640 | r243641 | |
| 311 | 314 | ROM_END |
| 312 | 315 | |
| 313 | 316 | |
| 314 | | CONS( 1981, tc4, 0, 0, tc4, tc4, driver_device, 0, "Coleco", "Total Control 4", GAME_NOT_WORKING | GAME_SUPPORTS_SAVE ) |
| 317 | CONS( 1981, tc4, 0, 0, tc4, tc4, driver_device, 0, "Coleco", "Total Control 4", GAME_SUPPORTS_SAVE ) |