BizHawk/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/MMC3_family/Mapper197.cs

20 lines
356 B
C#

namespace BizHawk.Emulation.Consoles.Nintendo
{
public sealed class Mapper197 : MMC3Board_Base
{
public override bool Configure(NES.EDetectionOrigin origin)
{
//analyze board type
switch (Cart.board_type)
{
case "MAPPER197":
break;
default:
return false;
}
BaseSetup();
return true;
}
}
}