Atari - go ahead and hook up empty mappers for all 20 mappers
This commit is contained in:
parent
7e30f2844f
commit
28effcba8c
|
@ -78,11 +78,26 @@
|
|||
<Compile Include="Buffer.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\Atari2600.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\Atari2600.Core.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\Mappers\m3Fe.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\Mappers\m0840.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\Mappers\m3E.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\Mappers\m3F.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\Mappers\m4A50.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\Mappers\mE0.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\Mappers\mE7.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\Mappers\mEF.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\Mappers\mF0.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\Mappers\mF4.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\Mappers\mCV.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\Mappers\m2K.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\Mappers\m4K.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\Mappers\mF6.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\Mappers\mF8.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\Mappers\mFA.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\Mappers\mFE.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\Mappers\mMC.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\Mappers\mUA.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\Mappers\mX07.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\oldTIA.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\M6532.cs" />
|
||||
<Compile Include="Consoles\Atari\2600\TIA.cs">
|
||||
|
|
|
@ -113,6 +113,23 @@ namespace BizHawk
|
|||
case "CV": mapper = new mCV(); break;
|
||||
case "F8": mapper = new mF8(); break;
|
||||
case "F6": mapper = new mF6(); break;
|
||||
case "F4": mapper = new mF4(); break;
|
||||
case "FE": mapper = new mFE(); break;
|
||||
case "E0": mapper = new mE0(); break;
|
||||
case "3F": mapper = new m3F(); break;
|
||||
case "FA": mapper = new mFA(); break;
|
||||
case "E7": mapper = new mE7(); break;
|
||||
case "F0": mapper = new mF0(); break;
|
||||
case "UA": mapper = new mUA(); break;
|
||||
//Homebrew mappers
|
||||
case "3Fe": mapper = new m3Fe(); break;
|
||||
case "3E": mapper = new m3E(); break;
|
||||
case "0840": mapper = new m0840(); break;
|
||||
case "MC": mapper = new mMC(); break;
|
||||
case "EF": mapper = new mEF(); break;
|
||||
case "X07": mapper = new mX07(); break;
|
||||
case "4A50": mapper = new m4A50(); break;
|
||||
|
||||
default: throw new InvalidOperationException("mapper not supported: " + game.GetOptionsDict()["m"]);
|
||||
}
|
||||
mapper.core = this;
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace BizHawk.Emulation.Consoles.Atari._2600
|
||||
{
|
||||
class m0840 : MapperBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace BizHawk.Emulation.Consoles.Atari._2600
|
||||
{
|
||||
class m3E : MapperBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace BizHawk.Emulation.Consoles.Atari._2600
|
||||
{
|
||||
class m3F :MapperBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace BizHawk.Emulation.Consoles.Atari._2600
|
||||
{
|
||||
class m3Fe : MapperBase
|
||||
{
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace BizHawk.Emulation.Consoles.Atari._2600
|
||||
{
|
||||
class m4A50 : MapperBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace BizHawk.Emulation.Consoles.Atari._2600
|
||||
{
|
||||
class mE0 : MapperBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace BizHawk.Emulation.Consoles.Atari._2600
|
||||
{
|
||||
class mE7 : MapperBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace BizHawk.Emulation.Consoles.Atari._2600
|
||||
{
|
||||
class mEF : MapperBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace BizHawk.Emulation.Consoles.Atari._2600
|
||||
{
|
||||
class mF0 : MapperBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace BizHawk.Emulation.Consoles.Atari._2600
|
||||
{
|
||||
class mF4 :MapperBase
|
||||
{
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace BizHawk.Emulation.Consoles.Atari._2600
|
||||
{
|
||||
class mFA : MapperBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace BizHawk.Emulation.Consoles.Atari._2600
|
||||
{
|
||||
class mFE : MapperBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace BizHawk.Emulation.Consoles.Atari._2600
|
||||
{
|
||||
class mMC : MapperBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace BizHawk.Emulation.Consoles.Atari._2600
|
||||
{
|
||||
class mUA : MapperBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace BizHawk.Emulation.Consoles.Atari._2600
|
||||
{
|
||||
class mX07 : MapperBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue