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

16 lines
309 B
C#
Raw Normal View History

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