NES: finish previous commit
This commit is contained in:
parent
6d53152a7f
commit
a9799f4716
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -6,6 +6,7 @@ using BizHawk.Common;
|
|||
|
||||
namespace BizHawk.Emulation.Cores.Nintendo.NES
|
||||
{
|
||||
[NES.INESBoardImplPriority]
|
||||
public class Namcot175_340 : NES.NESBoardBase
|
||||
{
|
||||
/*
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue