Previous 199869 Revisions Next

r32739 Tuesday 14th October, 2014 at 16:19:21 UTC by David Haywood
inputs (nw)
[src/mame/drivers]mario.c

trunk/src/mame/drivers/mario.c
r32738r32739
297297INPUT_PORTS_END
298298
299299
300static 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
351INPUT_PORTS_END
352
353
300354/*************************************
301355 *
302356 *  Graphics definitions
r32738r32739
446500   MCFG_SPEAKER_STANDARD_MONO("mono")
447501   
448502   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"))
450504   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.33)
451505
452506   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"))
454508   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.33)
455509
456510MACHINE_CONFIG_END
r32738r32739
653707GAME( 1983, marioo,   mario,   mario,   marioo, driver_device,  0, ROT0, "Nintendo of America", "Mario Bros. (US, Unknown Rev)", GAME_SUPPORTS_SAVE )
654708GAME( 1983, marioj,   mario,   mario,   marioj, driver_device,  0, ROT0, "Nintendo", "Mario Bros. (Japan)", GAME_SUPPORTS_SAVE )
655709GAME( 1983, masao,    mario,   masao,   masao, driver_device,   0, ROT0, "bootleg", "Masao", GAME_SUPPORTS_SAVE )
656GAME( 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?
710GAME( 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?

Previous 199869 Revisions Next


© 1997-2024 The MAME Team