From 0316fa9817d7ec6bf4ea14f4a1cef027db73798f Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 8 Feb 2015 21:51:15 +0000 Subject: [PATCH] some rom loading stuff --- BizHawk.Client.Common/RomLoader.cs | 12 ++++++++++++ BizHawk.Emulation.Common/Database/Database.cs | 4 ++++ 2 files changed, 16 insertions(+) diff --git a/BizHawk.Client.Common/RomLoader.cs b/BizHawk.Client.Common/RomLoader.cs index fb98846a85..70078fd9a5 100644 --- a/BizHawk.Client.Common/RomLoader.cs +++ b/BizHawk.Client.Common/RomLoader.cs @@ -400,6 +400,18 @@ namespace BizHawk.Client.Common case null: // The user picked nothing in the Core picker break; + case "83P": + var ti83Bios = ((CoreFileProvider)nextComm.CoreFileProvider).GetFirmware("TI83", "Rom", true); + var ti83BiosPath = ((CoreFileProvider)nextComm.CoreFileProvider).GetFirmwarePath("TI83", "Rom", true); + using (var ti83AsHawkFile = new HawkFile()) + { + ti83AsHawkFile.Open(ti83BiosPath); + var ti83BiosAsRom = new RomGame(ti83AsHawkFile); + var ti83 = new TI83(nextComm, ti83BiosAsRom.GameInfo, ti83Bios, GetCoreSettings()); + ti83.LinkPort.SendFileToCalc(File.OpenRead(path), false); + nextEmulator = ti83; + } + break; case "SNES": if (Global.Config.SNES_InSnes9x && VersionInfo.DeveloperBuild) { diff --git a/BizHawk.Emulation.Common/Database/Database.cs b/BizHawk.Emulation.Common/Database/Database.cs index 99ac3cb55c..40d08924b6 100644 --- a/BizHawk.Emulation.Common/Database/Database.cs +++ b/BizHawk.Emulation.Common/Database/Database.cs @@ -335,6 +335,10 @@ namespace BizHawk.Emulation.Common case ".LNX": game.System = "Lynx"; break; + + case ".83P": + game.System = "83P"; + break; } game.Name = Path.GetFileNameWithoutExtension(fileName).Replace('_', ' ');