From 03012c5fbe8b918c80fc8bd8205e01ee47f3ba68 Mon Sep 17 00:00:00 2001 From: Mark Riley Date: Tue, 9 May 2017 14:25:13 +0100 Subject: [PATCH] Replaced the checksums with correct checksums. The MCPX 1.0 ROM had the wrong checksums. The checksums included were from a known bad copy of the ROM. --- src/mame/drivers/xbox.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/mame/drivers/xbox.cpp b/src/mame/drivers/xbox.cpp index 1aa831eff46..d6de4b2d6e5 100644 --- a/src/mame/drivers/xbox.cpp +++ b/src/mame/drivers/xbox.cpp @@ -194,8 +194,7 @@ MACHINE_CONFIG_END ROM_START( xbox ) ROM_REGION( 0x400, "mcpx", 0 ) - // mcpx_1_0.bin is bad, first byte (0x7f) sould be removed and a byte with value 0xee added at the end - ROM_LOAD( "mcpx_1_0.bin", 0, 0x200, CRC(f31429fc) SHA1(a9ecbf8896d10db81594923e485862aa3aac7b58) ) + ROM_LOAD( "mcpx_1_0.bin", 0, 0x200, CRC(0b07d1f1) SHA1(5d270675b54eb8071b480e42d22a3015ac211cef) ) ROM_LOAD( "mcpx_1_1.bin", 0x200, 0x200, CRC(94ce376b) SHA1(6c875f17f773aaec51eb434068bb6c657c4343c0) ) ROM_REGION( 0x100000, "bios", 0)