diff options
author | 2022-05-24 10:39:16 +0100 | |
---|---|---|
committer | 2022-05-24 10:39:45 +0100 | |
commit | ce6417ab04f5bab5375031b9832222b4ec187b3c (patch) | |
tree | 9068aa7d8c82090ba259f68a30ae5e561ab17f09 | |
parent | deddb5626c25ac820b4837b992b02b79edac4a47 (diff) |
Prevent cowrace from locking up MAME [smf]
-rw-r--r-- | src/mame/drivers/kingdrby.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/kingdrby.cpp b/src/mame/drivers/kingdrby.cpp index 47cd382e3c8..2183b938fcc 100644 --- a/src/mame/drivers/kingdrby.cpp +++ b/src/mame/drivers/kingdrby.cpp @@ -1155,7 +1155,7 @@ ROM_START( cowrace ) ROM_REGION( 0x8000, "slave", ROMREGION_ERASEFF ) // slave z80? /* I've tried the kingdrbb slave CPU rom ... game works until the auto race in attract mode. We need to locate and dump this on the PCB. */ ROM_LOAD( "slave.bin", 0x0000, 0x8000, NO_DUMP ) - ROM_FILL( 0x0000, 0x8000, 0xff ) // <- to remove once that the above is dumped + ROM_FILL( 0x0000, 0x0001, 0xc3 ) ROM_FILL(0x0001, 0x7fff, 0x00) // <- to remove once that the above is dumped ROM_REGION( 0x10000, "gfx1", 0 ) ROM_LOAD( "u94.bin", 0x8000, 0x8000, CRC(945dc115) SHA1(bdd145234e6361c42ed20e8ca4cac64f07332748) ) |