diff options
author | 2019-09-02 02:29:22 +1000 | |
---|---|---|
committer | 2019-09-02 02:29:22 +1000 | |
commit | c7937dbe372d9fbd3c58e31ae65e807991d419e8 (patch) | |
tree | ed623558b8a10256f9108e8007e1addb067f0ef4 | |
parent | 9e880f57f6b1cdce03a4f232ad7d80faf7ee498f (diff) |
Revert "Update sdk85.cpp (#5427)"
This reverts commit 8e10e88e1b442fa75ca92fc2f6a35c2004253ecf.
-rw-r--r-- | src/mame/drivers/sdk85.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/mame/drivers/sdk85.cpp b/src/mame/drivers/sdk85.cpp index ef21b9bdbf4..2eeff6a9a4e 100644 --- a/src/mame/drivers/sdk85.cpp +++ b/src/mame/drivers/sdk85.cpp @@ -35,15 +35,6 @@ On the right you'll get a "clue", slightly different than on the standard game ( Once you find the number, you'll see it flashing. Press the 2 key and you'll get your score (number of attempts before guessing). Press 0 to restart. -Notes on expansion rom with default content Mastermind. -Original authors: see above (Paolo Forlani and Stefano Bodrato) -Ported to option rom: NASZVADI Peter - -The game can be started from monitor by defining SP as 20FFh and PC as 0800h and starting execution. -When setting register values in monitor, SPH, SPL, PCH and PCL values must be set to 20, FF, 08, 00 respectively before start! -Stefano's bios had been altered in order to use lower ram bank and the option rom slot. -When selecting "Empty" a14, which is basically 2kbytes of zeros, the default option rom will be launched directly. - *************************************************************************************************************************************/ #include "emu.h" @@ -193,11 +184,8 @@ ROM_START( sdk85 ) ROMX_LOAD( "sdk85.a14", 0x0000, 0x0800, CRC(9d5a983f) SHA1(54e218560fbec009ac3de5cfb64b920241ef2eeb), ROM_BIOS(0) ) ROM_SYSTEM_BIOS(1, "mastermind", "Mastermind") ROMX_LOAD( "mastermind.a14", 0x0000, 0x0800, CRC(36b694ae) SHA1(4d8a5ae5d10e8f72a6e349c7eeaf1aa00c4e45e1), ROM_BIOS(1) ) - ROM_SYSTEM_BIOS(2, "empty", "Empty") - ROMX_LOAD( "empty.a14", 0x0000, 0x0800, CRC(f1e8ba9e) SHA1(605db3fdbaff4ba13729371ad0c4fbab3889378e), ROM_BIOS(2) ) ROM_REGION( 0x800, "expromio", ROMREGION_ERASEFF ) - ROM_LOAD_OPTIONAL( "mastermind.a15", 0x0000, 0x0800, CRC(0538e162) SHA1(c351975e2cf515cee29fcaeb04ef47189afe5250) ) ROM_END /* Driver */ |