Change serialisation of Jaguar VSystemID
also fixed line ending
This commit is contained in:
parent
483258a04d
commit
1bf2bb758c
|
@ -76,7 +76,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
["GEN"] = "Genesis",
|
||||
["SMS"] = "Sega Master System",
|
||||
["PSX"] = "PlayStation",
|
||||
["JAG"] = "Jaguar",
|
||||
["Jaguar"] = "Jaguar",
|
||||
["Lynx"] = "Lynx",
|
||||
["AppleII"] = "Apple II",
|
||||
["O2"] = "Odyssey 2 / Philips Videopac+ G7400",
|
||||
|
|
|
@ -143,11 +143,11 @@ namespace BizHawk.Emulation.Common
|
|||
FirmwareAndOption(SHA1Checksum.Dummy, 131072, "NDS", "firmwarei", "DSi_Firmware.bin", "DSi Firmware");
|
||||
FirmwareAndOption(SHA1Checksum.Dummy, 251658304, "NDS", "nand", "DSi_Nand.bin", "DSi NAND");
|
||||
|
||||
Firmware("JAG", "Bios", "Bios");
|
||||
Firmware("Jaguar", "Bios", "Bios");
|
||||
var kseries = File("F8991B0C385F4E5002FA2A7E2F5E61E8C5213356", 131072, "JAG_bios_k.bin", "Bios (K Series)");
|
||||
var mseries = File("AF643900FEA84234E08B616A6D27F03F0A61DB96", 131072, "JAG_bios_m.bin", "Bios (M Series)");
|
||||
Option("JAG", "Bios", in kseries);
|
||||
Option("JAG", "Bios", in mseries);
|
||||
Option("Jaguar", "Bios", in kseries);
|
||||
Option("Jaguar", "Bios", in mseries);
|
||||
|
||||
FirmwareAndOption("E4ED47FAE31693E016B081C6BDA48DA5B70D7CCB", 512, "Lynx", "Boot", "LYNX_boot.img", "Boot Rom");
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ namespace BizHawk.Emulation.Common
|
|||
public const string GG = "GG";
|
||||
public const string GGL = "GGL";
|
||||
public const string INTV = "INTV";
|
||||
public const string JAG = "JAG";
|
||||
public const string JAG = "Jaguar";
|
||||
public const string Libretro = "Libretro";
|
||||
public const string Lynx = "Lynx";
|
||||
public const string MAME = "MAME";
|
||||
|
@ -62,7 +62,7 @@ namespace BizHawk.Emulation.Common
|
|||
public const string SGXCD = "SGXCD";
|
||||
public const string SMS = "SMS";
|
||||
public const string SNES = "SNES";
|
||||
public const string TI83 = "TI83";
|
||||
public const string TI83 = "TI83";
|
||||
public const string TIC80 = "TIC80";
|
||||
public const string UZE = "UZE";
|
||||
public const string VB = "VB";
|
||||
|
|
|
@ -46,7 +46,7 @@ namespace BizHawk.Emulation.Cores.Atari.Jaguar
|
|||
SkipMemoryConsistencyCheck = CoreComm.CorePreferences.HasFlag(CoreComm.CorePreferencesFlags.WaterboxMemoryConsistencyCheck),
|
||||
});
|
||||
|
||||
var bios = CoreComm.CoreFileProvider.GetFirmwareOrThrow(new("JAG", "Bios"));
|
||||
var bios = CoreComm.CoreFileProvider.GetFirmwareOrThrow(new("Jaguar", "Bios"));
|
||||
if (bios.Length != 0x20000)
|
||||
{
|
||||
throw new MissingFirmwareException("Jaguar Bios must be 131072 bytes!");
|
||||
|
|
Loading…
Reference in New Issue