mirror of
https://github.com/holub/mame
synced 2025-04-24 17:30:55 +03:00
Gun triggers for p911/jpark3 (nw)
This commit is contained in:
parent
321d93323f
commit
4b68c1bf4d
@ -77,15 +77,16 @@
|
||||
- needs a proper way to dump security dongles, anything but p9112 has placeholder ROM for ds2430.
|
||||
|
||||
Game status:
|
||||
ppp2nd POST: "DIP SWITCH ERROR", "NO SECURITY ERROR"
|
||||
ppp2nd POST: "NO SECURITY ERROR"
|
||||
boxingm Goes to attract mode when ran with memory card check. Coins up.
|
||||
code1d,b RTC self check bad
|
||||
gticlub2 Attract mode works. Coins up. Hangs in car selection.
|
||||
gticlub2ea Doesn't boot: bad CHD?
|
||||
jpark3 POST?: Shows "Now loading..." then black screen (sets global timer 1 on EPIC...)
|
||||
jpark3 POST?: Shows "Now loading..." then black screen (sets global timer 1 on EPIC) - with IRQ3 crashes at first 3d frame
|
||||
mocapglf Security code error
|
||||
mocapb,j Crash after self checks
|
||||
p911,e,j,uc,kc "Distribution error"
|
||||
p911 "Distribution error"
|
||||
p911e,j,uc,kc Hangs at POST, with IRQ3 it crashes at first 3d frame
|
||||
p9112 RTC self check bad
|
||||
popn9 Doesn't boot: bad CHD?
|
||||
sscopex/sogeki Security code error
|
||||
@ -2238,9 +2239,25 @@ INPUT_PORTS_START( boxingm )
|
||||
PORT_BIT(0x80, IP_ACTIVE_LOW, IPT_UNKNOWN ) // memory card check for boxingm (actually comms enable?)
|
||||
INPUT_PORTS_END
|
||||
|
||||
// TODO: left/right escape, 2nd service switch?
|
||||
INPUT_PORTS_START( jpark3 )
|
||||
PORT_INCLUDE( viper )
|
||||
|
||||
PORT_MODIFY("IN3")
|
||||
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_START2 )
|
||||
|
||||
PORT_MODIFY("IN4")
|
||||
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_NAME("P1 Gun Trigger") PORT_PLAYER(1)
|
||||
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_NAME("P2 Gun Trigger") PORT_PLAYER(2)
|
||||
|
||||
INPUT_PORTS_END
|
||||
|
||||
INPUT_PORTS_START( p911 )
|
||||
PORT_INCLUDE( viper )
|
||||
|
||||
PORT_MODIFY("IN4")
|
||||
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_NAME("Gun Trigger")
|
||||
|
||||
PORT_MODIFY("IN5")
|
||||
// one of these is P2 SHT2 (checks and fails serial if pressed)
|
||||
PORT_BIT(0x40, IP_ACTIVE_LOW, IPT_UNKNOWN )
|
||||
@ -2970,8 +2987,8 @@ GAME(2000, code1d, kviper, viper, viper, viper_state, vipercf, ROT0, "Ko
|
||||
GAME(2000, code1db, code1d, viper, viper, viper_state, vipercf, ROT0, "Konami", "Code One Dispatch (ver B)", MACHINE_NOT_WORKING|MACHINE_NO_SOUND)
|
||||
GAME(2001, gticlub2, kviper, viper, gticlub2, viper_state, vipercf, ROT0, "Konami", "GTI Club: Corso Italiano (ver JAB)", MACHINE_NOT_WORKING|MACHINE_NO_SOUND)
|
||||
GAME(2001, gticlub2ea,gticlub2, viper, gticlub2, viper_state, vipercf, ROT0, "Konami", "GTI Club: Corso Italiano (ver EAA)", MACHINE_NOT_WORKING|MACHINE_NO_SOUND)
|
||||
GAME(2001, jpark3, kviper, viper, viper, viper_state, vipercf, ROT0, "Konami", "Jurassic Park 3 (ver EBC)", MACHINE_NOT_WORKING|MACHINE_NO_SOUND)
|
||||
GAME(2001, jpark3u, jpark3, viper, viper, viper_state, vipercf, ROT0, "Konami", "Jurassic Park 3 (ver UA)", MACHINE_NOT_WORKING|MACHINE_NO_SOUND)
|
||||
GAME(2001, jpark3, kviper, viper, jpark3, viper_state, vipercf, ROT0, "Konami", "Jurassic Park 3 (ver EBC)", MACHINE_NOT_WORKING|MACHINE_NO_SOUND)
|
||||
GAME(2001, jpark3u, jpark3, viper, jpark3, viper_state, vipercf, ROT0, "Konami", "Jurassic Park 3 (ver UA)", MACHINE_NOT_WORKING|MACHINE_NO_SOUND)
|
||||
GAME(2001, mocapglf, kviper, viper, viper, viper_state, vipercf, ROT90, "Konami", "Mocap Golf (ver UAA)", MACHINE_NOT_WORKING|MACHINE_NO_SOUND)
|
||||
GAME(2001, mocapb, kviper, viper, viper, viper_state, vipercf, ROT90, "Konami", "Mocap Boxing (ver AAA)", MACHINE_NOT_WORKING|MACHINE_NO_SOUND)
|
||||
GAME(2001, mocapbj, mocapb, viper, viper, viper_state, vipercf, ROT90, "Konami", "Mocap Boxing (ver JAA)", MACHINE_NOT_WORKING|MACHINE_NO_SOUND)
|
||||
|
Loading…
Reference in New Issue
Block a user