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/AxROM.cs')
-rw-r--r--FamicomDumper/mappers/AxROM.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/FamicomDumper/mappers/AxROM.cs b/FamicomDumper/mappers/AxROM.cs
index 6c27665..85c46f1 100644
--- a/FamicomDumper/mappers/AxROM.cs
+++ b/FamicomDumper/mappers/AxROM.cs
@@ -2,8 +2,6 @@
{
public string Name { get => "AxROM"; }
public int Number { get => 7; }
- public byte Submapper { get => 0; }
- public string UnifName { get => null; }
public int DefaultPrgSize { get => 256 * 1024; }
public int DefaultChrSize { get => 0; }
@@ -36,16 +34,6 @@
}
}
- public void DumpChr(IFamicomDumperConnection dumper, List<byte> data, int size)
- {
- throw new NotSupportedException("This mapper doesn't have a CHR ROM");
- }
-
- public void EnablePrgRam(IFamicomDumperConnection dumper)
- {
- throw new NotSupportedException("PRG RAM is not supported by this mapper");
- }
-
public MirroringType GetMirroring(IFamicomDumperConnection dumper)
{
return MirroringType.MapperControlled;