trunk/src/mess/drivers/sms.c
| r29463 | r29464 | |
| 385 | 385 | PORT_INCLUDE( sms ) |
| 386 | 386 | |
| 387 | 387 | PORT_START("DSW") |
| 388 | | PORT_DIPNAME( 0x07, 0x07, "Time Selection 1" ) |
| 388 | PORT_DIPNAME( 0x07, 0x07, "Timer 1 length" ) |
| 389 | 389 | PORT_DIPSETTING( 0x00, "135s" ) |
| 390 | 390 | PORT_DIPSETTING( 0x01, "120s" ) |
| 391 | 391 | PORT_DIPSETTING( 0x02, "105s" ) |
| r29463 | r29464 | |
| 394 | 394 | PORT_DIPSETTING( 0x05, "60s" ) |
| 395 | 395 | PORT_DIPSETTING( 0x06, "45s" ) |
| 396 | 396 | PORT_DIPSETTING( 0x07, "30s" ) |
| 397 | | PORT_DIPNAME( 0x18, 0x18, "Time Selection 2" ) |
| 397 | PORT_DIPNAME( 0x18, 0x18, "Timer 2 length" ) |
| 398 | 398 | PORT_DIPSETTING( 0x00, "25s" ) |
| 399 | 399 | PORT_DIPSETTING( 0x08, "20s" ) |
| 400 | 400 | PORT_DIPSETTING( 0x10, "15s" ) |
| r29463 | r29464 | |
| 402 | 402 | PORT_DIPNAME( 0x20, 0x20, DEF_STR( Unknown ) ) |
| 403 | 403 | PORT_DIPSETTING( 0x00, DEF_STR( On ) ) |
| 404 | 404 | PORT_DIPSETTING( 0x20, DEF_STR( Off ) ) |
| 405 | | PORT_DIPNAME( 0x40, 0x40, "Active Time Selection" ) |
| 406 | | PORT_DIPSETTING( 0x00, "2" ) |
| 407 | | PORT_DIPSETTING( 0x40, "1" ) |
| 408 | | PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_UNKNOWN ) // must be high |
| 405 | PORT_DIPNAME( 0x40, 0x40, "Select Timer" ) |
| 406 | PORT_DIPSETTING( 0x00, "Timer 2" ) |
| 407 | PORT_DIPSETTING( 0x40, "Timer 1" ) |
| 408 | PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_UNKNOWN ) // READY, must be high |
| 409 | 409 | |
| 410 | 410 | PORT_START("GAMESEL1") |
| 411 | 411 | PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("Game 03") PORT_CODE(KEYCODE_B) |
| r29463 | r29464 | |
| 1035 | 1035 | CONS( 1985, sg1000m3, sms, 0, sg1000m3, sg1000m3, sms_state, sg1000m3, "Sega", "SG-1000 Mark III", GAME_SUPPORTS_SAVE ) |
| 1036 | 1036 | CONS( 1986, sms1, sms, 0, sms1_ntsc, sms1, sms_state, sms1, "Sega", "Master System I", GAME_SUPPORTS_SAVE ) |
| 1037 | 1037 | CONS( 1986, sms1pal, sms, 0, sms1_pal, sms1, sms_state, sms1, "Sega", "Master System I (PAL)" , GAME_SUPPORTS_SAVE ) |
| 1038 | | CONS( 1986, smssdisp, sms, 0, sms_sdisp, smssdisp, smssdisp_state, smssdisp, "Sega", "Master System Store Display Unit", GAME_NOT_WORKING | GAME_SUPPORTS_SAVE ) |
| 1038 | CONS( 1986, smssdisp, sms, 0, sms_sdisp, smssdisp, smssdisp_state, smssdisp, "Sega", "Master System Store Display Unit", GAME_SUPPORTS_SAVE ) |
| 1039 | 1039 | CONS( 1987, smsj, sms, 0, smsj, smsj, sms_state, smsj, "Sega", "Master System (Japan)", GAME_SUPPORTS_SAVE ) |
| 1040 | 1040 | CONS( 1990, sms, 0, 0, sms2_ntsc, sms, sms_state, sms1, "Sega", "Master System II", GAME_SUPPORTS_SAVE ) |
| 1041 | 1041 | CONS( 1990, smspal, sms, 0, sms2_pal, sms, sms_state, sms1, "Sega", "Master System II (PAL)", GAME_SUPPORTS_SAVE ) |