Previous 199869 Revisions Next

r26119 Tuesday 12th November, 2013 at 10:49:47 UTC by hap
small update
[src/mame/drivers]lbeach.c

trunk/src/mame/drivers/lbeach.c
r26118r26119
222222//   AM_RANGE(0x8003, 0x8003) AM_WRITENOP // ?
223223//   AM_RANGE(0x8004, 0x8004) AM_WRITENOP // ?
224224//   AM_RANGE(0x8005, 0x8005) AM_WRITENOP // ?
225   AM_RANGE(0x8007, 0x8007) AM_WRITENOP // watchdog?
225   AM_RANGE(0x8007, 0x8007) AM_WRITENOP // probably watchdog
226226   AM_RANGE(0xa000, 0xa000) AM_READ_PORT("IN0")
227227//   AM_RANGE(0xa003, 0xa003) AM_READNOP // ? tests d7 at game over
228228   AM_RANGE(0xc000, 0xcfff) AM_ROM
r26118r26119
240240static INPUT_PORTS_START( lbeach )
241241   PORT_START("IN0")
242242   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_NAME("Gas Pedal")
243   PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_BUTTON5 ) PORT_NAME("Shifter 1st Gear")
244   PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_BUTTON6 ) PORT_NAME("Shifter 2nd Gear")
245   PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_BUTTON7 ) PORT_NAME("Shifter 3rd Gear")
246   PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_BUTTON8 ) PORT_NAME("Shifter 4th Gear")
243   PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_NAME("Shifter 1st Gear")
244   PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_BUTTON3 ) PORT_NAME("Shifter 2nd Gear")
245   PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_BUTTON4 ) PORT_NAME("Shifter 3rd Gear")
246   PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_BUTTON5 ) PORT_NAME("Shifter 4th Gear")
247247   PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_SERVICE1 ) PORT_NAME("Reset Record") // called RR in testmode
248248   PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_SERVICE2 ) PORT_NAME("Coin Counter") // called CC in testmode
249249   PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_COIN1 )
r26118r26119
324324   /* basic machine hardware */
325325   MCFG_CPU_ADD("maincpu", M6800, XTAL_16MHz / 32) // Motorola MC6800P, 500kHz
326326   MCFG_CPU_PROGRAM_MAP(lbeach_map)
327   MCFG_CPU_PERIODIC_INT_DRIVER(lbeach_state, nmi_line_pulse, 50) // unknown freq, it affects steering speed, glitchy if it's too fast
327   MCFG_CPU_PERIODIC_INT_DRIVER(lbeach_state, nmi_line_pulse, 50) // unknown freq, it affects game speed, glitchy if it's too fast
328328
329329   MCFG_NVRAM_ADD_0FILL("nvram")
330330

Previous 199869 Revisions Next


© 1997-2024 The MAME Team