mirror of
https://github.com/holub/mame
synced 2025-05-16 19:00:43 +03:00
misc updates - NW
groundfx.c: Correct CPU speed - NW undrfire.c: Correct CPU speed, though not verified - NW sfbonus.c: Misc comment update / correction - NW
This commit is contained in:
parent
1aa187e454
commit
073d675c9e
@ -54,7 +54,7 @@
|
||||
Ground Effects is effectively a 30Hz game - though the vblank interrupts
|
||||
still come in at 60Hz, the game uses a hardware frame counter to limit
|
||||
itself to 30Hz (it only updates things like the video registers every
|
||||
other vblank). There isn't enough cpu power in a 16MHz 68020 to run
|
||||
other vblank). There isn't enough cpu power in a 20MHz 68020 to run
|
||||
this game at 60Hz.
|
||||
|
||||
Ground Effects has a network mode - probably uses IRQ 6 and the unknown
|
||||
@ -363,7 +363,7 @@ INTERRUPT_GEN_MEMBER(groundfx_state::groundfx_interrupt)
|
||||
static MACHINE_CONFIG_START( groundfx, groundfx_state )
|
||||
|
||||
/* basic machine hardware */
|
||||
MCFG_CPU_ADD("maincpu", M68EC020, 16000000) /* 16 MHz */
|
||||
MCFG_CPU_ADD("maincpu", M68EC020, XTAL_40MHz/2) /* 20MHz - verified */
|
||||
MCFG_CPU_PROGRAM_MAP(groundfx_map)
|
||||
MCFG_CPU_VBLANK_INT_DRIVER("screen", groundfx_state, groundfx_interrupt)
|
||||
|
||||
|
@ -5540,7 +5540,7 @@ ROM_END
|
||||
ROM5 C409
|
||||
ROM6 59B6
|
||||
|
||||
Note: There is a chance that the "2nd Edition" graphics roms night be different.
|
||||
Note: There is a chance that the "2nd Edition" graphics roms might be different.
|
||||
*/
|
||||
ROM_START( spooky )
|
||||
ROM_REGION( 0x80000, "maincpu", 0 ) /* Z80 Code */
|
||||
@ -5633,7 +5633,7 @@ ROM_END
|
||||
|
||||
/* Fruit Bonus 3G
|
||||
|
||||
Version 1.0.1 roms need dumping. Program ROM was reflashed (updated) to v1.0.3
|
||||
Version 1.0.1 roms need dumping. The board was reflashed (updated) to v1.0.3
|
||||
|
||||
ROM SUM16 printed on rom label
|
||||
--------------------------------------------
|
||||
|
@ -725,7 +725,7 @@ static const tc0480scp_interface undrfire_tc0480scp_intf =
|
||||
static MACHINE_CONFIG_START( undrfire, undrfire_state )
|
||||
|
||||
/* basic machine hardware */
|
||||
MCFG_CPU_ADD("maincpu", M68EC020, 16000000) /* 16 MHz */
|
||||
MCFG_CPU_ADD("maincpu", M68EC020, XTAL_40MHz/2) /* 20 MHz - NOT verified */
|
||||
MCFG_CPU_PROGRAM_MAP(undrfire_map)
|
||||
MCFG_CPU_VBLANK_INT_DRIVER("screen", undrfire_state, undrfire_interrupt)
|
||||
|
||||
@ -754,11 +754,11 @@ MACHINE_CONFIG_END
|
||||
static MACHINE_CONFIG_START( cbombers, undrfire_state )
|
||||
|
||||
/* basic machine hardware */
|
||||
MCFG_CPU_ADD("maincpu", M68EC020, 16000000) /* 16 MHz */
|
||||
MCFG_CPU_ADD("maincpu", M68EC020, XTAL_40MHz/2) /* 20 MHz - NOT verified */
|
||||
MCFG_CPU_PROGRAM_MAP(cbombers_cpua_map)
|
||||
MCFG_CPU_VBLANK_INT_DRIVER("screen", undrfire_state, irq4_line_hold)
|
||||
|
||||
MCFG_CPU_ADD("sub", M68000, 16000000) /* 16 MHz */
|
||||
MCFG_CPU_ADD("sub", M68000, XTAL_32MHz/2) /* 16 MHz */
|
||||
MCFG_CPU_PROGRAM_MAP(cbombers_cpub_map)
|
||||
MCFG_CPU_VBLANK_INT_DRIVER("screen", undrfire_state, irq4_line_hold)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user