trunk/src/mess/drivers/dolphunk.c
| r22586 | r22587 | |
| 61 | 61 | minus. The orange digits show the current data at that address. To alter |
| 62 | 62 | data, just type it in and press UP. |
| 63 | 63 | |
| 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 | |
| 64 | 70 | TODO: |
| 65 | 71 | - Find missing roms |
| 66 | 72 | - Add optional hardware listed above |
| r22586 | r22587 | |
| 135 | 141 | ADDRESS_MAP_UNMAP_HIGH |
| 136 | 142 | AM_RANGE( 0x0000, 0x01ff) AM_ROM |
| 137 | 143 | AM_RANGE( 0x0200, 0x02ff) AM_RAM |
| 144 | AM_RANGE( 0x0c00, 0x0fff) AM_ROM |
| 138 | 145 | ADDRESS_MAP_END |
| 139 | 146 | |
| 140 | 147 | static ADDRESS_MAP_START( dolphunk_io, AS_IO, 8, dolphunk_state ) |
| r22586 | r22587 | |
| 193 | 200 | ROM_START( dolphunk ) |
| 194 | 201 | ROM_REGION( 0x8000, "maincpu", 0 ) |
| 195 | 202 | 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 | |
| 196 | 206 | 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) ) |
| 198 | 213 | ROM_END |
| 199 | 214 | |
| 200 | 215 | /* Driver */ |