From 102c053758cfbcd5ab48343eb5102ca223d7e486 Mon Sep 17 00:00:00 2001 From: Olivier Galibert Date: Sat, 10 Feb 2024 19:51:14 +0100 Subject: [PATCH] sw100xg: fix the dump endianness --- src/devices/bus/pci/sw1000xg.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/bus/pci/sw1000xg.cpp b/src/devices/bus/pci/sw1000xg.cpp index e6ce54262e5..99255915915 100644 --- a/src/devices/bus/pci/sw1000xg.cpp +++ b/src/devices/bus/pci/sw1000xg.cpp @@ -46,7 +46,7 @@ void sw1000xg_device::swp30_map(address_map &map) // a0 cards had firmware 1.00.00 // b0 cards are known to exist but not dumped yet -// c0 cards are not proven to exist +// c0 cards are not proven existing // d0 cards started with 1.04.00 and the firmware was upgradeable from the PC ROM_START( sw1000xg ) @@ -63,7 +63,7 @@ ROM_START( sw1000xg ) ROM_SYSTEM_BIOS( 4, "v140", "v1.04.00" ) ROM_LOAD16_WORD_SWAP_BIOS( 4, "1.04.00_xv561d0.ic102", 0x000000, 0x100000, CRC(9f5bfec8) SHA1(4ced122c8cac7a9c022d86fffe121042ad4be6a2) ) ROM_SYSTEM_BIOS( 5, "v100", "v1.00.00" ) - ROM_LOAD16_WORD_SWAP_BIOS( 4, "1.00.00_xv561a0.ic102", 0x000000, 0x100000, CRC(66a91708) SHA1(025e8724a26e68b354954adccade07fc8c7ffb6d) ) + ROM_LOAD16_WORD_SWAP_BIOS( 5, "1.00.00_xv561a0.ic102", 0x000000, 0x100000, CRC(9b6d8700) SHA1(0bb6c60572b9ed1628fa9e6678e03bd1e47f2a06) ) ROM_REGION( 0x1400000, "swp30", 0 ) ROM_LOAD32_WORD( "xv389a0.ic122", 0x0000000, 0x800000, CRC(92e11205) SHA1(72ec39e03e4e5ddf6137faa798c0ec3c23905855) )