Initial checkin of Jaleco-JF_11_14 (mapper 140)
This commit is contained in:
parent
53bcb10795
commit
40cd085509
|
@ -3,7 +3,7 @@
|
|||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProductVersion>9.0.30729</ProductVersion>
|
||||
<ProductVersion>9.0.21022</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<ProjectGuid>{197D4314-8A9F-49BA-977D-54ACEFAEB6BA}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
|
@ -72,6 +72,7 @@
|
|||
<Compile Include="Consoles\Nintendo\NES\Boards\IC_74x377.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Consoles\Nintendo\NES\Boards\Jaleco-JF_11_14.cs" />
|
||||
<Compile Include="Consoles\Nintendo\NES\Boards\NROM.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue