NES: finish previous commit

This commit is contained in:
goyuken 2014-02-04 03:58:48 +00:00
parent 6d53152a7f
commit a9799f4716
5 changed files with 5 additions and 2 deletions

View File

@ -18,8 +18,7 @@ using BizHawk.Emulation.Common.Components;
//FUTURE - we may need to split this into a separate MMC5 class. but for now it is just a pain.
namespace BizHawk.Emulation.Cores.Nintendo.NES
{
//MMC5 isn't actually all that common
//[NES.INESBoardImplPriority]
[NES.INESBoardImplPriority]
public sealed class ExROM : NES.NESBoardBase
{
//configuraton

View File

@ -18,6 +18,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
//state
int prg_bank_32k, chr_bank_8k;
[NES.INESBoardImplPriority]
public override bool Configure(NES.EDetectionOrigin origin)
{
switch (Cart.board_type)

View File

@ -12,6 +12,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
// what we have here should work for everthing that's actually a 129 or 163,
// and some of the 175/340 (mapper 210)
[NES.INESBoardImplPriority]
public sealed class Namcot129_163 : NES.NESBoardBase
{
//configuration

View File

@ -6,6 +6,7 @@ using BizHawk.Common;
namespace BizHawk.Emulation.Cores.Nintendo.NES
{
[NES.INESBoardImplPriority]
public class Namcot175_340 : NES.NESBoardBase
{
/*

View File

@ -3,6 +3,7 @@ using System;
namespace BizHawk.Emulation.Cores.Nintendo.NES
{
//various japanese Namcot108 boards plus DEROM
[NES.INESBoardImplPriority]
public sealed class Mapper206 : Namcot108Board_Base
{
public override bool Configure(NES.EDetectionOrigin origin)