Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ClusterM authored Dec 14, 2022
1 parent 138be85 commit 0b5993f
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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; }
*/
}
```

Expand Down Expand Up @@ -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; }
*/
}
```

Expand Down

0 comments on commit 0b5993f

Please sign in to comment.