17 lines
308 B
C#
17 lines
308 B
C#
![]() |
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|