diff --git a/BizHawk.Emulation/BizHawk.Emulation.csproj b/BizHawk.Emulation/BizHawk.Emulation.csproj index 35cd263762..6102098bfb 100644 --- a/BizHawk.Emulation/BizHawk.Emulation.csproj +++ b/BizHawk.Emulation/BizHawk.Emulation.csproj @@ -3,7 +3,7 @@ Debug AnyCPU - 9.0.30729 + 9.0.21022 2.0 {197D4314-8A9F-49BA-977D-54ACEFAEB6BA} Library @@ -72,6 +72,7 @@ Code + Code diff --git a/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/Jaleco-JF_11_14.cs b/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/Jaleco-JF_11_14.cs new file mode 100644 index 0000000000..3d8f801658 --- /dev/null +++ b/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/Jaleco-JF_11_14.cs @@ -0,0 +1,52 @@ +using System; +using System.IO; +using System.Diagnostics; + +namespace BizHawk.Emulation.Consoles.Nintendo +{ + /* + * Life Span: October 1986 - April 1987 +PCB Class: Jaleco-JF-11 + Jaleco-JF-14 +iNES Mapper #140 + +JF-11 +PRG-ROM: 128kb +CHR-ROM: 32kb +Battery is not available +Uses vertical mirroring +No CIC present +Other chips used: Sunsoft-1 + * + * Games: + * Bio Senshi Dan - Increaser Tono Tatakai + */ + + class Jaleco_JF_11_14 : NES.NESBoardBase + { + + public override bool Configure(NES.EDetectionOrigin origin) + { + //configure + switch (Cart.board_type) + { + case "JALECO-JF-14": + break; + default: + return false; + } + SetMirrorType(Cart.pad_h, Cart.pad_v); + return true; + } + + public override byte ReadPPU(int addr) + { + return base.ReadPPU(addr); + } + + public override void SyncStateBinary(BinarySerializer ser) + { + base.SyncStateBinary(ser); + } + } +}