Previous 199869 Revisions Next

r22587 Sunday 28th April, 2013 at 07:17:28 UTC by Robbbert
(MESS) Dolphunk: added a game
[src/mess/drivers]dolphunk.c

trunk/src/mess/drivers/dolphunk.c
r22586r22587
6161        minus. The orange digits show the current data at that address. To alter
6262        data, just type it in and press UP.
6363
64        To play the reflexes game, hold UP, press 1, release UP, release 1.
65        The display will show A--0 (or some random number in the last position).
66        Press any odd-numbered key (B is convenient), and read off the reaction time.
67        After a short delay it will show '--' again, this is the signal to react.
68        It doesn't seem to reset the counters each time around.
69
6470        TODO:
6571        - Find missing roms
6672        - Add optional hardware listed above
r22586r22587
135141   ADDRESS_MAP_UNMAP_HIGH
136142   AM_RANGE( 0x0000, 0x01ff) AM_ROM
137143   AM_RANGE( 0x0200, 0x02ff) AM_RAM
144   AM_RANGE( 0x0c00, 0x0fff) AM_ROM
138145ADDRESS_MAP_END
139146
140147static ADDRESS_MAP_START( dolphunk_io, AS_IO, 8, dolphunk_state )
r22586r22587
193200ROM_START( dolphunk )
194201   ROM_REGION( 0x8000, "maincpu", 0 )
195202   ROM_LOAD( "dolphin_mo.rom", 0x0000, 0x0100, CRC(a8811f48) SHA1(233c629dc20fac286c8c1559e461bb0b742a675e) )
203   // This one is used in winarcadia but it is a bad dump, we use the corrected one above
204   //ROM_LOAD( "dolphin_mo.rom", 0x0000, 0x0100, BAD_DUMP CRC(1ac4ac18) SHA1(62a63de6fcd6cd5fcee930d31c73fe603647f06c) )
205
196206   ROM_LOAD( "dolphin_moni.rom", 0x0100, 0x0100, NO_DUMP )
197   ROM_LOAD_OPTIONAL( "dolphin_mona.rom", 0x0c00, 0x0400, NO_DUMP )
207
208   //ROM_LOAD_OPTIONAL( "dolphin_mona.rom", 0x0c00, 0x0400, NO_DUMP )
209   // This rom is a bugfixed and relocated version of the game found on the Amigan site
210   ROM_LOAD_OPTIONAL( "reflexes.bin", 0x0c00, 0x0400, CRC(14a1557d) SHA1(789d10551f1bb3472057901fa3cee0c6bfe220ac) )
211   // This the original
212   //ROM_LOAD( "reflexes.bin", 0x0c00, 0x0072, CRC(c4bed94b) SHA1(cf525755a1dbce6a4681353be692ddf0346f323b) )
198213ROM_END
199214
200215/* Driver */

Previous 199869 Revisions Next


© 1997-2024 The MAME Team