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:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-12-14 13:26:47 +0300
committerGitHub <noreply@github.com>2022-12-14 13:26:47 +0300
commit0b5993f586561405d56f4d9b5ceeda07e00e25ab (patch)
tree748b1d173aeea9cad69a48d40f6ece79ac43b050
parent138be85b9657ecd3cb700dc41ba03212f993ee3f (diff)
Update README.mdv3.3
-rw-r--r--README.md46
1 files changed, 23 insertions, 23 deletions
diff --git a/README.md b/README.md
index a695519..f7aad66 100644
--- a/README.md
+++ b/README.md
@@ -158,6 +158,29 @@ public interface IMapper
/// <param name="dumper">FamicomDumperConnection object to access cartridge</param>
/// <returns>Mirroring type</returns>
MirroringType GetMirroring(IFamicomDumperConnection dumper);
+
+ /* Optional properties */
+ /*
+ /// <summary>
+ /// Default PRG RAM size, can be used with NES 2.0
+ /// </summary>
+ int DefaultPrgRamSize { get; }
+
+ /// <summary>
+ /// Default CHR RAM size, can be used with NES 2.0
+ /// </summary>
+ int DefaultChrRamSize { get; }
+
+ /// <summary>
+ /// Default PRG NVRAM size, can be used with NES 2.0
+ /// </summary>
+ int DefaultPrgNvramSize { get; }
+
+ /// <summary>
+ /// Default CHR NVRAM size, can be used with NES 2.0
+ /// </summary>
+ int DefaultChrNvramSize { get; }
+ */
}
```
@@ -247,29 +270,6 @@ public interface IFamicomDumperConnection : IDisposable
/// </summary>
/// <returns>Current mirroring</returns>
MirroringType GetMirroring();
-
- /* Optional properties */
- /*
- /// <summary>
- /// Default PRG RAM size, can be used with NES 2.0
- /// </summary>
- int DefaultPrgRamSize { get; }
-
- /// <summary>
- /// Default CHR RAM size, can be used with NES 2.0
- /// </summary>
- int DefaultChrRamSize { get; }
-
- /// <summary>
- /// Default PRG NVRAM size, can be used with NES 2.0
- /// </summary>
- int DefaultPrgNvramSize { get; }
-
- /// <summary>
- /// Default CHR NVRAM size, can be used with NES 2.0
- /// </summary>
- int DefaultChrNvramSize { get; }
- */
}
```