BizHawk/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF8SC.cs

17 lines
308 B
C#
Raw Normal View History

using System;
namespace BizHawk.Emulation.Cores.Atari.Atari2600
{
/**
Cartridge class used for Atari's 8K bankswitched games with
128 bytes of RAM. There are two 4K banks.
*/
internal class mF8SC : MapperBase
{
public mF8SC()
{
throw new NotImplementedException();
}
}
}