2011-09-26 08:05:17 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
|
|
|
|
|
namespace BizHawk.Emulation.Consoles.Nintendo
|
|
|
|
|
{
|
|
|
|
|
//AKA mapper 67
|
2012-03-22 06:20:10 +00:00
|
|
|
|
//this may be confusing due to general chaos with the early sunsoft mappers. see docs/sunsoft.txt
|
2011-09-26 08:05:17 +00:00
|
|
|
|
class Sunsoft3 : NES.NESBoardBase
|
|
|
|
|
{
|
|
|
|
|
public override bool Configure(NES.EDetectionOrigin origin)
|
|
|
|
|
{
|
|
|
|
|
//TBD
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|