diff options
Diffstat (limited to 'src/mame/drivers/champbwl.cpp')
-rw-r--r-- | src/mame/drivers/champbwl.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/champbwl.cpp b/src/mame/drivers/champbwl.cpp index 44a5b0f2182..7e358ebc34a 100644 --- a/src/mame/drivers/champbwl.cpp +++ b/src/mame/drivers/champbwl.cpp @@ -491,7 +491,7 @@ WRITE_LINE_MEMBER(champbwl_state::screen_vblank_champbwl) } -static MACHINE_CONFIG_START( champbwl, champbwl_state ) +static MACHINE_CONFIG_START( champbwl ) /* basic machine hardware */ MCFG_CPU_ADD("maincpu", Z80, 16000000/4) /* 4MHz */ @@ -556,7 +556,7 @@ MACHINE_START_MEMBER(champbwl_state,doraemon) membank("bank1")->configure_entries(0, 4, &ROM[0x10000], 0x4000); } -static MACHINE_CONFIG_START( doraemon, champbwl_state ) +static MACHINE_CONFIG_START( doraemon ) /* basic machine hardware */ MCFG_CPU_ADD("maincpu", Z80, XTAL_14_31818MHz/4) @@ -713,5 +713,5 @@ ROM_START( doraemon ) ROM_LOAD( "u27-01.bin", 0x00200, 0x200, CRC(66245fc7) SHA1(c94d9dce7b557c21a3dc1f3f8a1b29594715c994) ) ROM_END -GAME( 1993?,doraemon, 0, doraemon, doraemon, driver_device, 0, ROT0, "Sunsoft / Epoch", "Doraemon no Eawase Montage (prototype)", MACHINE_SUPPORTS_SAVE ) // year not shown, datecodes on pcb suggests late-1993 -GAME( 1989, champbwl, 0, champbwl, champbwl, driver_device, 0, ROT270, "Seta / Romstar Inc.", "Championship Bowling", MACHINE_SUPPORTS_SAVE ) +GAME( 1993?,doraemon, 0, doraemon, doraemon, champbwl_state, 0, ROT0, "Sunsoft / Epoch", "Doraemon no Eawase Montage (prototype)", MACHINE_SUPPORTS_SAVE ) // year not shown, datecodes on pcb suggests late-1993 +GAME( 1989, champbwl, 0, champbwl, champbwl, champbwl_state, 0, ROT270, "Seta / Romstar Inc.", "Championship Bowling", MACHINE_SUPPORTS_SAVE ) |