Previous 199869 Revisions Next

r31775 Tuesday 26th August, 2014 at 00:32:47 UTC by Brian Troha
fuukifg2.c: Correct clock speeds for the Susume! Mile Smile / Go Go! Mile Smile and Gyakuten!! Puzzle Bancho sets. [system11]
[src/emu/drivers]xtal.h
[src/mame]mame.lst
[src/mame/drivers]fuukifg2.c

trunk/src/mame/drivers/fuukifg2.c
r31774r31775
1515---------------------------------------------------------------------------
1616Year + Game
1717---------------------------------------------------------------------------
1895  Go Go! Mile Smile
1895  Susume! Mile Smile / Go Go! Mile Smile
191996  Gyakuten!! Puzzle Bancho
2020---------------------------------------------------------------------------
2121
r31774r31775
2424  setting of Coin B and only uses the settings for Coin A, except for Coin B "Free Play"
2525  The game says Press 1 or 2, and will start the game, but jumps right to the Game Over
2626  and "Continue" countdown.
27The Service Mode is WAY off on effects of dipswitches for the Japanese set!!! It reports
27The Service Mode is WAY off on effects of dipswitches for the ealier set!!! It reports
2828  the effects of MAME's SW1:3-8 have been moved to SW1:2-7 and Demo Sound has moved to
2929  SW2:7. What MAME shows as settings are according to actual game effect and reflect what
3030  the manual states.
r31774r31775
197197   PORT_DIPSETTING(      0x000c, DEF_STR( Normal ) )
198198   PORT_DIPSETTING(      0x0008, DEF_STR( Hard ) )
199199   PORT_DIPSETTING(      0x0004, DEF_STR( Very_Hard ) )
200   PORT_DIPNAME( 0x0030, 0x0020, DEF_STR( Language ) ) PORT_DIPLOCATION("SW1:5,6") /* Default Language: English */
200   PORT_DIPNAME( 0x0030, 0x0030, DEF_STR( Language ) ) PORT_DIPLOCATION("SW1:5,6")
201201   PORT_DIPSETTING(      0x0010, DEF_STR( Chinese ) )
202202   PORT_DIPSETTING(      0x0030, DEF_STR( Japanese ) ) /* Only setting to give a "For use only in...." Copyright Notice */
203203   PORT_DIPSETTING(      0x0000, DEF_STR( Korean ) )
r31774r31775
237237*/
238238INPUT_PORTS_END
239239
240/* Same as gogomile, but the default country is different and the coinage settings too. */
241static INPUT_PORTS_START( gogomilej )
240
241static INPUT_PORTS_START( gogomileo )   /* The ealier version has different coinage settings. */
242242   PORT_INCLUDE( gogomile )
243243
244244   PORT_MODIFY("DSW")      // $880000.w
245   PORT_DIPNAME( 0x0030, 0x0030, DEF_STR( Language ) )     PORT_DIPLOCATION("SW1:5,6") /* Default Language: Japanese */
246   PORT_DIPSETTING(      0x0010, DEF_STR( Chinese ) )
247   PORT_DIPSETTING(      0x0030, DEF_STR( Japanese ) ) /* Only setting to give a "For use only in...." Copyright Notice */
248   PORT_DIPSETTING(      0x0000, DEF_STR( Korean ) )
249   PORT_DIPSETTING(      0x0020, DEF_STR( English ) )
250
251245   PORT_DIPNAME( 0x1c00, 0x1c00, DEF_STR( Coin_A ) )   PORT_DIPLOCATION("SW2:3,4,5")
252246   PORT_DIPSETTING(      0x1800, DEF_STR( 4C_1C ) )
253247   PORT_DIPSETTING(      0x1400, DEF_STR( 3C_1C ) )
r31774r31775
450444static MACHINE_CONFIG_START( fuuki16, fuuki16_state )
451445
452446   /* basic machine hardware */
453   MCFG_CPU_ADD("maincpu", M68000, XTAL_32MHz / 2)
447   MCFG_CPU_ADD("maincpu", M68000, XTAL_32MHz / 2) /* 16 MHz */
454448   MCFG_CPU_PROGRAM_MAP(fuuki16_map)
455449
456   MCFG_CPU_ADD("audiocpu", Z80, XTAL_12MHz / 2)
450   MCFG_CPU_ADD("audiocpu", Z80, XTAL_12MHz / 2) /* 6 MHz */
457451   MCFG_CPU_PROGRAM_MAP(fuuki16_sound_map)
458452   MCFG_CPU_IO_MAP(fuuki16_sound_io_map)
459453
r31774r31775
474468   /* sound hardware */
475469   MCFG_SPEAKER_STANDARD_STEREO("lspeaker", "rspeaker")
476470
477   MCFG_SOUND_ADD("ym1", YM2203, XTAL_12MHz / 3)
471   MCFG_SOUND_ADD("ym1", YM2203, XTAL_28_64MHz / 8) /* 3.58 MHz */
478472   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "lspeaker", 0.15)
479473   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker", 0.15)
480474
481   MCFG_SOUND_ADD("ym2", YM3812, XTAL_12MHz / 3)
475   MCFG_SOUND_ADD("ym2", YM3812, XTAL_28_64MHz / 8) /* 3.58 MHz */
482476   MCFG_YM3812_IRQ_HANDLER(WRITELINE(fuuki16_state, soundirq))
483477   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "lspeaker", 0.30)
484478   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker", 0.30)
485479
486   MCFG_OKIM6295_ADD("oki", 1056000, OKIM6295_PIN7_HIGH)
480   MCFG_OKIM6295_ADD("oki", XTAL_32MHz / 32, OKIM6295_PIN7_HIGH) /* 1 Mhz */
487481   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "lspeaker", 0.85)
488482   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker", 0.85)
489483MACHINE_CONFIG_END
r31774r31775
509503OSC  : 32.00000MHz(OSC1) 28.64000MHz(OSC2) 12.000MHz(Xtal1)
510504
511505ROMs:
512fp2.2 - Main programs (27c4000)
513fp1.1 /
506fp2.rom2 - Main programs (27c4000)
507fp1.rom1 /
514508
515lh538n1d.25 - Samples (Sharp mask, read as 27c8001)
516fs1.24 - Sound program (27c010)
509lh538n1d.rom25 - Samples (Sharp mask, read as 27c8001)
510fs1.rom24 - Sound program (27c010)
517511
518lh5370h8.11 - Sprites? (Sharp Mask, read as 27c160)
519lh5370ha.12 |
520lh5370h7.15 |
521lh5370h9.16 /
512lh5370h8.rom11 - Sprites? (Sharp Mask, read as 27c160)
513lh5370ha.rom12 |
514lh5370h7.rom15 |
515lh5370h9.rom16 /
522516
523lh537k2r.20 - Tiles? (Sharp Mask, read as 27c160)
524lh5370hb.19 |
525lh5370h6.3  /
517lh537k2r.rom20 - Tiles? (Sharp Mask, read as 27c160)
518lh5370hb.rom19 |
519lh5370h6.rom3  /
526520
527521Custom chips:
528522FI-002K (208pin PQFP, GA2)
r31774r31775
531525
532526Others:
533527Mitsubishi M60067-0901FP 452100 (208pin PQFP, GA1)
5344 GALs (16V8B, not dumped)
5285 GALs (GAL16V8B, not dumped)
535529
530Measured clocks:
531
532    68k - 16mhz, OSC1 / 2
533    Z80 - 6mhz, Xtal1 / 2
534  M6295 - 1mhz,  OSC1 / 32
535YM2203C - 3.58mhz, OSC2 / 8
536 YM3812 - 3.58mhz, OSC2 / 8
537
536538***************************************************************************/
537539
538540ROM_START( gogomile )
539541   ROM_REGION( 0x100000, "maincpu", 0 )        /* 68000 Code */
540   ROM_LOAD16_BYTE( "fp2n", 0x000000, 0x080000, CRC(e73583a0) SHA1(05c6ee5cb2c151b32c462e8b920f9a57fb6cce5b) )
541   ROM_LOAD16_BYTE( "fp1n", 0x000001, 0x080000, CRC(7b110824) SHA1(980e326d3b9e113ed522be3076663a249da4e739) )
542   ROM_LOAD16_BYTE( "fp2n.rom2", 0x000000, 0x080000, CRC(e73583a0) SHA1(05c6ee5cb2c151b32c462e8b920f9a57fb6cce5b) )
543   ROM_LOAD16_BYTE( "fp1n.rom1", 0x000001, 0x080000, CRC(7b110824) SHA1(980e326d3b9e113ed522be3076663a249da4e739) )
542544
543545   ROM_REGION( 0x28000, "audiocpu", 0 )        /* Z80 Code */
544   ROM_LOAD( "fs1.24", 0x00000, 0x08000, CRC(4e4bd371) SHA1(429e776135ce8960e147762763d952d16ed3f9d4) )    // same as japanese version
545   ROM_CONTINUE(       0x10000, 0x18000             )
546   ROM_LOAD( "fs1.rom24", 0x00000, 0x08000, CRC(4e4bd371) SHA1(429e776135ce8960e147762763d952d16ed3f9d4) )
547   ROM_CONTINUE(          0x10000, 0x18000)
546548
547549   ROM_REGION( 0x200000, "gfx1", 0 )   /* 16x16x4 Sprites */
548   ROM_LOAD( "lh537k2r.20", 0x000000, 0x200000, CRC(525dbf51) SHA1(f21876676cc60ed65bc86884da894b24830826bb) )
550   ROM_LOAD( "lh537k2r.rom20", 0x000000, 0x200000, CRC(525dbf51) SHA1(f21876676cc60ed65bc86884da894b24830826bb) )
549551
550552   ROM_REGION( 0x200000, "gfx2", 0 )   /* 16x16x4 Tiles */
551   ROM_LOAD( "lh5370h6.3", 0x000000, 0x200000, CRC(e2ca7107) SHA1(7174c2e1e2106275ad41b53af22651dca492367a) )  // x11xxxxxxxxxxxxxxxxxx = 0xFF
553   ROM_LOAD( "lh5370h6.rom3", 0x000000, 0x200000, CRC(e2ca7107) SHA1(7174c2e1e2106275ad41b53af22651dca492367a) )  // x11xxxxxxxxxxxxxxxxxx = 0xFF
552554
553555   ROM_REGION( 0x800000, "gfx3", 0 )   /* 16x16x8 Tiles */
554   ROM_LOAD( "lh5370h8.11", 0x000000, 0x200000, CRC(9961c925) SHA1(c47b4f19f090527b3e0c04dd046aa9cd51ca0e16) )
555   ROM_LOAD( "lh5370ha.12", 0x200000, 0x200000, CRC(5f2a87de) SHA1(d7ed8f01b40aaf58126aaeee10ec7d948a144080) )
556   ROM_LOAD( "lh5370h7.15", 0x400000, 0x200000, CRC(34921680) SHA1(d9862f106caa14ea6ad925174e6bf2d542511593) )
557   ROM_LOAD( "lh5370h9.16", 0x600000, 0x200000, CRC(e0118483) SHA1(36f9068e6c81c171b4426c3794277742bbc926f5) )
556   ROM_LOAD( "lh5370h8.rom11", 0x000000, 0x200000, CRC(9961c925) SHA1(c47b4f19f090527b3e0c04dd046aa9cd51ca0e16) )
557   ROM_LOAD( "lh5370ha.rom12", 0x200000, 0x200000, CRC(5f2a87de) SHA1(d7ed8f01b40aaf58126aaeee10ec7d948a144080) )
558   ROM_LOAD( "lh5370h7.rom15", 0x400000, 0x200000, CRC(34921680) SHA1(d9862f106caa14ea6ad925174e6bf2d542511593) )
559   ROM_LOAD( "lh5370h9.rom16", 0x600000, 0x200000, CRC(e0118483) SHA1(36f9068e6c81c171b4426c3794277742bbc926f5) )
558560
559561   ROM_REGION( 0x200000, "gfx4", 0 )   /* 16x16x4 Tiles */
560   ROM_LOAD( "lh5370hb.19", 0x000000, 0x200000, CRC(bd1e896f) SHA1(075f7600cbced1d285cf32fc196844720eb12671) ) // FIRST AND SECOND HALF IDENTICAL
562   ROM_LOAD( "lh5370hb.rom19", 0x000000, 0x200000, CRC(bd1e896f) SHA1(075f7600cbced1d285cf32fc196844720eb12671) ) // FIRST AND SECOND HALF IDENTICAL
561563
562   /* 0x40000 * 4: sounds+speech (japanese),sounds+speech (english) */
564   /* 0x40000 * 4: sounds+speech (japanese), sounds+speech (english) */
563565   ROM_REGION( 0x100000, "oki", 0 )    /* Samples */
564   ROM_LOAD( "lh538n1d.25", 0x000000, 0x100000, CRC(01622a95) SHA1(8d414bfc6dcfab1cf9cfe5738eb5c2ff31b77df6) ) // 0x40000 * 4
566   ROM_LOAD( "lh538n1d.rom25", 0x000000, 0x100000, CRC(01622a95) SHA1(8d414bfc6dcfab1cf9cfe5738eb5c2ff31b77df6) ) // 0x40000 * 4
565567ROM_END
566568
567ROM_START( gogomilej )
569ROM_START( gogomileo )
568570   ROM_REGION( 0x100000, "maincpu", 0 )        /* 68000 Code */
569   ROM_LOAD16_BYTE( "fp2.2", 0x000000, 0x080000, CRC(28fd3e4e) SHA1(3303e5759c0781035c74354587e1916719695754) )    // 1xxxxxxxxxxxxxxxxxx = 0xFF
570   ROM_LOAD16_BYTE( "fp1.1", 0x000001, 0x080000, CRC(35a5fc45) SHA1(307207791cee7f40e88feffc5805ac25008a8566) )    // 1xxxxxxxxxxxxxxxxxx = 0xFF
571   ROM_LOAD16_BYTE( "fp2.rom2", 0x000000, 0x080000, CRC(28fd3e4e) SHA1(3303e5759c0781035c74354587e1916719695754) )    // 1xxxxxxxxxxxxxxxxxx = 0xFF
572   ROM_LOAD16_BYTE( "fp1.rom1", 0x000001, 0x080000, CRC(35a5fc45) SHA1(307207791cee7f40e88feffc5805ac25008a8566) )    // 1xxxxxxxxxxxxxxxxxx = 0xFF
571573
572574   ROM_REGION( 0x28000, "audiocpu", 0 )        /* Z80 Code */
573   ROM_LOAD( "fs1.24", 0x00000, 0x08000, CRC(4e4bd371) SHA1(429e776135ce8960e147762763d952d16ed3f9d4) )
574   ROM_CONTINUE(       0x10000, 0x18000             )
575   ROM_LOAD( "fs1.rom24", 0x00000, 0x08000, CRC(4e4bd371) SHA1(429e776135ce8960e147762763d952d16ed3f9d4) )
576   ROM_CONTINUE(          0x10000, 0x18000)
575577
576578   ROM_REGION( 0x200000, "gfx1", 0 )   /* 16x16x4 Sprites */
577   ROM_LOAD( "lh537k2r.20", 0x000000, 0x200000, CRC(525dbf51) SHA1(f21876676cc60ed65bc86884da894b24830826bb) )
579   ROM_LOAD( "lh537k2r.rom20", 0x000000, 0x200000, CRC(525dbf51) SHA1(f21876676cc60ed65bc86884da894b24830826bb) )
578580
579581   ROM_REGION( 0x200000, "gfx2", 0 )   /* 16x16x4 Tiles */
580   ROM_LOAD( "lh5370h6.3", 0x000000, 0x200000, CRC(e2ca7107) SHA1(7174c2e1e2106275ad41b53af22651dca492367a) )  // x11xxxxxxxxxxxxxxxxxx = 0xFF
582   ROM_LOAD( "lh5370h6.rom3", 0x000000, 0x200000, CRC(e2ca7107) SHA1(7174c2e1e2106275ad41b53af22651dca492367a) )  // x11xxxxxxxxxxxxxxxxxx = 0xFF
581583
582584   ROM_REGION( 0x800000, "gfx3", 0 )   /* 16x16x8 Tiles */
583   ROM_LOAD( "lh5370h8.11", 0x000000, 0x200000, CRC(9961c925) SHA1(c47b4f19f090527b3e0c04dd046aa9cd51ca0e16) )
584   ROM_LOAD( "lh5370ha.12", 0x200000, 0x200000, CRC(5f2a87de) SHA1(d7ed8f01b40aaf58126aaeee10ec7d948a144080) )
585   ROM_LOAD( "lh5370h7.15", 0x400000, 0x200000, CRC(34921680) SHA1(d9862f106caa14ea6ad925174e6bf2d542511593) )
586   ROM_LOAD( "lh5370h9.16", 0x600000, 0x200000, CRC(e0118483) SHA1(36f9068e6c81c171b4426c3794277742bbc926f5) )
585   ROM_LOAD( "lh5370h8.rom11", 0x000000, 0x200000, CRC(9961c925) SHA1(c47b4f19f090527b3e0c04dd046aa9cd51ca0e16) )
586   ROM_LOAD( "lh5370ha.rom12", 0x200000, 0x200000, CRC(5f2a87de) SHA1(d7ed8f01b40aaf58126aaeee10ec7d948a144080) )
587   ROM_LOAD( "lh5370h7.rom15", 0x400000, 0x200000, CRC(34921680) SHA1(d9862f106caa14ea6ad925174e6bf2d542511593) )
588   ROM_LOAD( "lh5370h9.rom16", 0x600000, 0x200000, CRC(e0118483) SHA1(36f9068e6c81c171b4426c3794277742bbc926f5) )
587589
588590   ROM_REGION( 0x200000, "gfx4", 0 )   /* 16x16x4 Tiles */
589   ROM_LOAD( "lh5370hb.19", 0x000000, 0x200000, CRC(bd1e896f) SHA1(075f7600cbced1d285cf32fc196844720eb12671) ) // FIRST AND SECOND HALF IDENTICAL
591   ROM_LOAD( "lh5370hb.rom19", 0x000000, 0x200000, CRC(bd1e896f) SHA1(075f7600cbced1d285cf32fc196844720eb12671) ) // FIRST AND SECOND HALF IDENTICAL
590592
591   /* 0x40000 * 4: sounds+speech (japanese),sounds+speech (english) */
593   /* 0x40000 * 4: sounds+speech (japanese), sounds+speech (english) */
592594   ROM_REGION( 0x100000, "oki", 0 )    /* Samples */
593   ROM_LOAD( "lh538n1d.25", 0x000000, 0x100000, CRC(01622a95) SHA1(8d414bfc6dcfab1cf9cfe5738eb5c2ff31b77df6) ) // 0x40000 * 4
595   ROM_LOAD( "lh538n1d.rom25", 0x000000, 0x100000, CRC(01622a95) SHA1(8d414bfc6dcfab1cf9cfe5738eb5c2ff31b77df6) ) // 0x40000 * 4
594596ROM_END
595597
596598
r31774r31775
607609OSC  : 32.00000MHz(OSC1) 28.64000MHz(OSC2) 12.000MHz(Xtal1)
608610
609611ROMs:
610rom2.no1 - Main program (even)(27c4000)
611rom1.no2 - Main program (odd) (27c4000)
612no1.rom2 - Main program (even)(27c4000)
613no2.rom1 - Main program (odd) (27c4000)
612614
613rom25.no3 - Samples (27c2001)
614rom24.no4 - Sound program (27c010)
615no3.rom25 - Samples (27c2001)
616no4.rom24 - Sound program (27c010)
615617
616rom11.61 - Graphics (Mask, read as 27c160)
617rom15.59 |
618rom20.58 |
619rom3.60  /
61861.rom11 - Graphics (Mask, read as 27c160)
61959.rom15 |
62058.rom20 |
62160.rom3  /
620622
621623Custom chips:
622624FI-002K (208pin PQFP, GA2)
r31774r31775
629631
630632ROM_START( pbancho )
631633   ROM_REGION( 0x100000, "maincpu", 0 )        /* 68000 Code */
632   ROM_LOAD16_BYTE( "rom2.no1", 0x000000, 0x080000, CRC(1b4fd178) SHA1(02cf3d2554b29cd253470d68ea959738f3b98dbe) ) // 1xxxxxxxxxxxxxxxxxx = 0xFF
633   ROM_LOAD16_BYTE( "rom1.no2", 0x000001, 0x080000, CRC(9cf510a5) SHA1(08e79b5bbd1c011c32f82dd15fba42d7898861be) ) // 1xxxxxxxxxxxxxxxxxx = 0xFF
634   ROM_LOAD16_BYTE( "no1.rom2", 0x000000, 0x080000, CRC(1b4fd178) SHA1(02cf3d2554b29cd253470d68ea959738f3b98dbe) ) // 1xxxxxxxxxxxxxxxxxx = 0xFF
635   ROM_LOAD16_BYTE( "no2,rom1", 0x000001, 0x080000, CRC(9cf510a5) SHA1(08e79b5bbd1c011c32f82dd15fba42d7898861be) ) // 1xxxxxxxxxxxxxxxxxx = 0xFF
634636
635637   ROM_REGION( 0x28000, "audiocpu", 0 )        /* Z80 Code */
636   ROM_LOAD( "rom24.no4", 0x00000, 0x08000, CRC(dfbfdb81) SHA1(84b0cbe843a9bbae43975afdbd029a9b76fd488b) )
637   ROM_CONTINUE(          0x10000, 0x18000             )
638   ROM_LOAD( "no4.rom23", 0x00000, 0x08000, CRC(dfbfdb81) SHA1(84b0cbe843a9bbae43975afdbd029a9b76fd488b) )
639   ROM_CONTINUE(          0x10000, 0x18000)
638640
639641   ROM_REGION( 0x200000, "gfx1", 0 )   /* 16x16x4 Sprites */
640   ROM_LOAD( "rom20.58", 0x000000, 0x200000, CRC(4dad0a2e) SHA1(a4f70557503110a5457b9096a79a5f249095fa55) )
642   ROM_LOAD( "58.rom20", 0x000000, 0x200000, CRC(4dad0a2e) SHA1(a4f70557503110a5457b9096a79a5f249095fa55) )
641643
642644   ROM_REGION( 0x200000, "gfx2", 0 )   /* 16x16x4 Tiles */
643   ROM_LOAD( "rom3.60",  0x000000, 0x200000, CRC(a50a3c1b) SHA1(a2b30f9f83f5dc2e069d7559aefbda9929fc640c) )
645   ROM_LOAD( "60.rom3",  0x000000, 0x200000, CRC(a50a3c1b) SHA1(a2b30f9f83f5dc2e069d7559aefbda9929fc640c) )
644646
645647   ROM_REGION( 0x400000, "gfx3", 0 )   /* 16x16x8 Tiles */
646   ROM_LOAD( "rom11.61", 0x000000, 0x200000, CRC(7f1213b9) SHA1(f8d6432b270c4d0954602e430ddd26841eb05656) )
647   ROM_LOAD( "rom15.59", 0x200000, 0x200000, CRC(b83dcb70) SHA1(b0b9df451535d85612fa095b4f694cf2e7930bca) )
648   ROM_LOAD( "61.rom11", 0x000000, 0x200000, CRC(7f1213b9) SHA1(f8d6432b270c4d0954602e430ddd26841eb05656) )
649   ROM_LOAD( "59.rom15", 0x200000, 0x200000, CRC(b83dcb70) SHA1(b0b9df451535d85612fa095b4f694cf2e7930bca) )
648650
649651   ROM_REGION( 0x200000, "gfx4", 0 )   /* 16x16x4 Tiles */
650   ROM_LOAD( "rom3.60",  0x000000, 0x200000, CRC(a50a3c1b) SHA1(a2b30f9f83f5dc2e069d7559aefbda9929fc640c) )    // ?maybe?
652   ROM_LOAD( "60.rom3",  0x000000, 0x200000, CRC(a50a3c1b) SHA1(a2b30f9f83f5dc2e069d7559aefbda9929fc640c) )    // ?maybe?
651653
652654   ROM_REGION( 0x040000, "oki", 0 )    /* Samples */
653   ROM_LOAD( "rom25.no3", 0x000000, 0x040000, CRC(a7bfb5ea) SHA1(61937eae4f8855bc09c494aff52d76d41dc3b76a) )
655   ROM_LOAD( "n03.rom25", 0x000000, 0x040000, CRC(a7bfb5ea) SHA1(61937eae4f8855bc09c494aff52d76d41dc3b76a) )
654656ROM_END
655657
656658
r31774r31775
662664
663665***************************************************************************/
664666
665GAME( 1995, gogomile, 0,        fuuki16, gogomile, driver_device, 0, ROT0, "Fuuki", "Go Go! Mile Smile", 0 )
666GAME( 1995, gogomilej,gogomile, fuuki16, gogomilej, driver_device,0, ROT0, "Fuuki", "Susume! Mile Smile (Japan)", 0 )
667GAME( 1996, pbancho,  0,        fuuki16, pbancho, driver_device,  0, ROT0, "Fuuki", "Gyakuten!! Puzzle Bancho (Japan)", 0)
667GAME( 1995, gogomile,  0,        fuuki16, gogomile,  driver_device, 0, ROT0, "Fuuki", "Susume! Mile Smile / Go Go! Mile Smile (newer)", 0 )
668GAME( 1995, gogomileo, gogomile, fuuki16, gogomileo, driver_device, 0, ROT0, "Fuuki", "Susume! Mile Smile / Go Go! Mile Smile (older)", 0 )
669GAME( 1996, pbancho,   0,        fuuki16, pbancho,   driver_device, 0, ROT0, "Fuuki", "Gyakuten!! Puzzle Bancho (Japan)", 0)
trunk/src/mame/mame.lst
r31774r31775
93369336
93379337// Fuuki FG-2 games
93389338gogomile        // (c) 1995
9339gogomilej       // (c) 1995 (Japan)
9339gogomileo       // (c) 1995 (Japan)
93409340pbancho         // (c) 1996 (Japan)
93419341
93429342// Fuuki FG-3 games
trunk/src/emu/drivers/xtal.h
r31774r31775
177177   XTAL_28_37516MHz    = 28375160,     /* Amiga PAL systems */
178178   XTAL_28_48MHz       = 28480000,     /* Chromatics CGC-7900 */
179179   XTAL_28_63636MHz    = 28636363,     /* Later Leland games and Atari GT, Amiga NTSC, Raiden2 h/w (8x NTSC subcarrier)*/
180   XTAL_28_64MHz       = 28640000,     /* Fukki FG-1c AI AM-2 PCB */
180181   XTAL_28_7MHz        = 28700000,
181182   XTAL_29_4912MHz     = 29491200,     /* Xerox Alto-II system clock (tagged 29.4MHz in the schematics) */
182183   XTAL_30MHz          = 30000000,     /* Impera Magic Card */

Previous 199869 Revisions Next


© 1997-2024 The MAME Team