BizHawk/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/Sunsoft3.cs

18 lines
382 B
C#
Raw Normal View History

using System;
using System.IO;
using System.Diagnostics;
namespace BizHawk.Emulation.Consoles.Nintendo
{
//AKA mapper 67
//this may be confusing due to general chaos with the early subnsoft mappers. see docs/sunsoft.txt
class Sunsoft3 : NES.NESBoardBase
{
public override bool Configure(NES.EDetectionOrigin origin)
{
//TBD
return false;
}
}
}