Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/famicom-dumper-client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'FamicomDumper/mappers/210.cs')
-rw-r--r--FamicomDumper/mappers/210.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/FamicomDumper/mappers/210.cs b/FamicomDumper/mappers/210.cs
index e237e7d..27fa7f7 100644
--- a/FamicomDumper/mappers/210.cs
+++ b/FamicomDumper/mappers/210.cs
@@ -2,8 +2,6 @@
{
public string Name { get => "Mapper 210"; }
public int Number { get => 210; }
- public byte Submapper { get => 0; }
- public string UnifName { get => null; }
public int DefaultPrgSize { get => 512 * 1024; }
public int DefaultChrSize { get => 256 * 1024; }
@@ -32,14 +30,4 @@
Console.WriteLine("OK");
}
}
-
- public void EnablePrgRam(IFamicomDumperConnection dumper)
- {
- dumper.WriteCpu(0xC000, 0x01);
- }
-
- public MirroringType GetMirroring(IFamicomDumperConnection dumper)
- {
- return dumper.GetMirroring();
- }
}