trunk/src/mame/drivers/mario.c
r32738 | r32739 | |
297 | 297 | INPUT_PORTS_END |
298 | 298 | |
299 | 299 | |
| 300 | static INPUT_PORTS_START( mariobl ) |
| 301 | |
| 302 | PORT_START("SYSTEM") |
| 303 | PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_BUTTON2 ) |
| 304 | PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_BUTTON1 ) |
| 305 | PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_COCKTAIL |
| 306 | PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_COCKTAIL |
| 307 | PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_START2 ) |
| 308 | PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_START1 ) |
| 309 | PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_COIN2 ) |
| 310 | PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_COIN1 ) |
| 311 | |
| 312 | PORT_START("INPUTS") |
| 313 | PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_JOYSTICK_UP ) PORT_8WAY |
| 314 | PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_JOYSTICK_DOWN ) PORT_8WAY |
| 315 | PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_8WAY |
| 316 | PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_8WAY |
| 317 | PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_JOYSTICK_UP ) PORT_8WAY PORT_COCKTAIL |
| 318 | PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_JOYSTICK_DOWN ) PORT_8WAY PORT_COCKTAIL |
| 319 | PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_8WAY PORT_COCKTAIL |
| 320 | PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_8WAY PORT_COCKTAIL |
| 321 | |
| 322 | PORT_START("DSW") |
| 323 | PORT_DIPNAME( 0x03, 0x00, DEF_STR( Lives ) ) PORT_DIPLOCATION("SW1:!1,!2") |
| 324 | PORT_DIPSETTING( 0x00, "3" ) |
| 325 | PORT_DIPSETTING( 0x01, "4" ) |
| 326 | PORT_DIPSETTING( 0x02, "5" ) |
| 327 | PORT_DIPSETTING( 0x03, "6" ) |
| 328 | PORT_DIPNAME( 0x1c, 0x00, DEF_STR( Coinage ) ) PORT_DIPLOCATION("SW1:!3,!4,!5") |
| 329 | PORT_DIPSETTING( 0x08, DEF_STR( 3C_1C ) ) |
| 330 | PORT_DIPSETTING( 0x10, DEF_STR( 2C_1C ) ) |
| 331 | PORT_DIPSETTING( 0x00, DEF_STR( 1C_1C ) ) |
| 332 | PORT_DIPSETTING( 0x18, DEF_STR( 1C_2C ) ) |
| 333 | PORT_DIPSETTING( 0x04, DEF_STR( 1C_3C ) ) |
| 334 | PORT_DIPSETTING( 0x0c, DEF_STR( 1C_4C ) ) |
| 335 | PORT_DIPSETTING( 0x14, DEF_STR( 1C_5C ) ) |
| 336 | PORT_DIPSETTING( 0x1c, DEF_STR( 1C_6C ) ) |
| 337 | PORT_DIPNAME( 0x20, 0x20, "2 Players Game" ) PORT_DIPLOCATION("SW1:!6") |
| 338 | PORT_DIPSETTING( 0x00, "1 Credit" ) |
| 339 | PORT_DIPSETTING( 0x20, "2 Credits" ) |
| 340 | PORT_DIPNAME( 0xc0, 0x00, DEF_STR( Bonus_Life ) ) PORT_DIPLOCATION("SW1:!7,!8") |
| 341 | PORT_DIPSETTING( 0x00, "20k 50k 30k+" ) |
| 342 | PORT_DIPSETTING( 0x40, "30k 60k 30k+" ) |
| 343 | PORT_DIPSETTING( 0x80, "40k 70k 30k+" ) |
| 344 | PORT_DIPSETTING( 0xc0, DEF_STR( None ) ) |
| 345 | |
| 346 | PORT_START("MONITOR") |
| 347 | PORT_CONFNAME( 0x01, 0x00, "Monitor" ) |
| 348 | PORT_CONFSETTING( 0x00, "Nintendo" ) |
| 349 | PORT_CONFSETTING( 0x01, "Std 15.72Khz" ) |
| 350 | |
| 351 | INPUT_PORTS_END |
| 352 | |
| 353 | |
300 | 354 | /************************************* |
301 | 355 | * |
302 | 356 | * Graphics definitions |
r32738 | r32739 | |
446 | 500 | MCFG_SPEAKER_STANDARD_MONO("mono") |
447 | 501 | |
448 | 502 | MCFG_SOUND_ADD("ay1", AY8910, XTAL_18_432MHz/6/2) /* XTAL confirmed, divisor guessed */ |
449 | | // MCFG_AY8910_PORT_A_READ_CB(IOPORT("SYSTEM")) |
| 503 | MCFG_AY8910_PORT_A_READ_CB(IOPORT("SYSTEM")) |
450 | 504 | MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.33) |
451 | 505 | |
452 | 506 | MCFG_SOUND_ADD("ay2", AY8910, XTAL_18_432MHz/6/2) /* XTAL confirmed, divisor guessed */ |
453 | | // MCFG_AY8910_PORT_A_READ_CB(IOPORT("INPUTS")) |
| 507 | MCFG_AY8910_PORT_A_READ_CB(IOPORT("INPUTS")) |
454 | 508 | MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.33) |
455 | 509 | |
456 | 510 | MACHINE_CONFIG_END |
r32738 | r32739 | |
653 | 707 | GAME( 1983, marioo, mario, mario, marioo, driver_device, 0, ROT0, "Nintendo of America", "Mario Bros. (US, Unknown Rev)", GAME_SUPPORTS_SAVE ) |
654 | 708 | GAME( 1983, marioj, mario, mario, marioj, driver_device, 0, ROT0, "Nintendo", "Mario Bros. (Japan)", GAME_SUPPORTS_SAVE ) |
655 | 709 | GAME( 1983, masao, mario, masao, masao, driver_device, 0, ROT0, "bootleg", "Masao", GAME_SUPPORTS_SAVE ) |
656 | | GAME( 1983, mariobl, mario, mariobl, marioj, driver_device, 0, ROT180, "bootleg", "Mario Bros. (Japan, bootleg)", GAME_SUPPORTS_SAVE ) // was listed as 'on extended Ambush hardware' but doesn't seem similar apart from the sound system? |
| 710 | GAME( 1983, mariobl, mario, mariobl, mariobl,driver_device, 0, ROT180, "bootleg", "Mario Bros. (Japan, bootleg)", GAME_SUPPORTS_SAVE ) // was listed as 'on extended Ambush hardware' but doesn't seem similar apart from the sound system? |