mirror of
https://github.com/holub/mame
synced 2025-10-04 16:34:53 +03:00
clock speed needs to be 28 or the games run in slow motion.. (yes I checked the vblank) I suspect the 156 chip has an internal multiplier, the usual input pin is 7Mhz IIRC.
This commit is contained in:
parent
9596eea3ba
commit
066fa9c096
@ -423,7 +423,7 @@ static INTERRUPT_GEN( deco32_vbl_interrupt )
|
||||
static MACHINE_DRIVER_START( hvysmsh )
|
||||
|
||||
/* basic machine hardware */
|
||||
MDRV_CPU_ADD(ARM, 28000000/2) /* Unconfirmed */
|
||||
MDRV_CPU_ADD(ARM, 28000000) /* Unconfirmed */
|
||||
MDRV_CPU_PROGRAM_MAP(hvysmsh_map,0)
|
||||
MDRV_CPU_VBLANK_INT(deco32_vbl_interrupt,1)
|
||||
|
||||
@ -459,7 +459,7 @@ MACHINE_DRIVER_END
|
||||
static MACHINE_DRIVER_START( wcvol95 )
|
||||
|
||||
/* basic machine hardware */
|
||||
MDRV_CPU_ADD(ARM, 28000000/2) /* Unconfirmed */
|
||||
MDRV_CPU_ADD(ARM, 28000000) /* Unconfirmed */
|
||||
MDRV_CPU_PROGRAM_MAP(wcvol95_map,0)
|
||||
MDRV_CPU_VBLANK_INT(deco32_vbl_interrupt,1)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user