diff --git a/BizHawk.Client.EmuHawk/AVOut/IVideoWriter.cs b/BizHawk.Client.EmuHawk/AVOut/IVideoWriter.cs
index e067b327a5..bdaf8c0350 100644
--- a/BizHawk.Client.EmuHawk/AVOut/IVideoWriter.cs
+++ b/BizHawk.Client.EmuHawk/AVOut/IVideoWriter.cs
@@ -94,19 +94,19 @@ namespace BizHawk.Client.EmuHawk
/// Number of rerecords on movie file
void SetMetaData(string gameName, string authors, UInt64 lengthMS, UInt64 rerecords);
- ///
- /// short description of this IVideoWriter
- ///
- // string WriterDescription();
+// ///
+// /// short description of this IVideoWriter
+// ///
+// string WriterDescription();
///
/// what default extension this writer would like to put on its output
///
string DesiredExtension();
- ///
- /// name that command line parameters can refer to
- ///
- ///
- // string ShortName();
+// ///
+// /// name that command line parameters can refer to
+// ///
+// ///
+// string ShortName();
}
public static class VideoWriterExtensions
diff --git a/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.Controllers.cs b/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.Controllers.cs
index 709e9b8e34..bcde9619a2 100644
--- a/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.Controllers.cs
+++ b/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.Controllers.cs
@@ -47,8 +47,8 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC
// keyboard
List keys = new List
{
- /// http://www.cpcwiki.eu/index.php/Programming:Keyboard_scanning
- /// http://www.cpcwiki.eu/index.php/File:Grimware_cpc464_version3_case_top.jpg
+ // http://www.cpcwiki.eu/index.php/Programming:Keyboard_scanning
+ // http://www.cpcwiki.eu/index.php/File:Grimware_cpc464_version3_case_top.jpg
// Keyboard - row 1
"Key ESC", "Key 1", "Key 2", "Key 3", "Key 4", "Key 5", "Key 6", "Key 7", "Key 8", "Key 9", "Key 0", "Key Dash", "Key Hat", "Key CLR", "Key DEL",
diff --git a/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/Disk/NECUPD765.Definitions.cs b/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/Disk/NECUPD765.Definitions.cs
index 950cb07d7b..e72da558c8 100644
--- a/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/Disk/NECUPD765.Definitions.cs
+++ b/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/Disk/NECUPD765.Definitions.cs
@@ -692,10 +692,10 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC
///
private class Command
{
- ///
- /// Mask to remove potential parameter bits (5,6, and or 7) in order to identify the command
- ///
- //public int BitMask { get; set; }
+// ///
+// /// Mask to remove potential parameter bits (5,6, and or 7) in order to identify the command
+// ///
+// public int BitMask { get; set; }
///
/// The command code after bitmask has been applied
///
diff --git a/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/Display/AmstradGateArray.cs b/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/Display/AmstradGateArray.cs
index 3c3677d92c..110b2ce975 100644
--- a/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/Display/AmstradGateArray.cs
+++ b/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/Display/AmstradGateArray.cs
@@ -375,12 +375,12 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC
///
private bool HSYNC;
- ///
- /// Is set when an initial HSYNC is seen from the CRCT
- /// On real hardware interrupt generation is based on the falling edge of the HSYNC signal
- /// So in this emulation, once the falling edge is detected, interrupt processing happens
- ///
- //private bool HSYNC_falling;
+// ///
+// /// Is set when an initial HSYNC is seen from the CRCT
+// /// On real hardware interrupt generation is based on the falling edge of the HSYNC signal
+// /// So in this emulation, once the falling edge is detected, interrupt processing happens
+// ///
+// private bool HSYNC_falling;
///
/// Used to count HSYNCs during a VSYNC
diff --git a/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/Display/CRTC6845.cs b/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/Display/CRTC6845.cs
index 6c9c4c50cc..e17d5572e9 100644
--- a/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/Display/CRTC6845.cs
+++ b/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/Display/CRTC6845.cs
@@ -147,6 +147,7 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC
///
/// This 16-bit property emulates how the Amstrad CPC Gate Array is connected up to the CRTC
/// Built from R12, R13 and CLK
+ ///
/*
Memory Address Signal Signal source Signal name
A15 6845 MA13
@@ -166,7 +167,6 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC
A1 6845 MA0
A0 Gate-Array CLK
*/
- ///
public ushort AddressLineCPC
{
get
diff --git a/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/SoundOutput/AY38912.cs b/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/SoundOutput/AY38912.cs
index 97c4a964db..a1ee410cfb 100644
--- a/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/SoundOutput/AY38912.cs
+++ b/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/SoundOutput/AY38912.cs
@@ -395,6 +395,7 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC
///
/// The register array
+ ///
/*
The AY-3-8910/8912 contains 16 internal registers as follows:
@@ -426,7 +427,6 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC
The AY-3-8912 ignores bit 7 of this register.
*/
- ///
private int[] _registers = new int[16];
///
diff --git a/BizHawk.Emulation.Cores/Computers/AmstradCPC/Machine/CPCBase.cs b/BizHawk.Emulation.Cores/Computers/AmstradCPC/Machine/CPCBase.cs
index a3c87688f2..60dab69ecc 100644
--- a/BizHawk.Emulation.Cores/Computers/AmstradCPC/Machine/CPCBase.cs
+++ b/BizHawk.Emulation.Cores/Computers/AmstradCPC/Machine/CPCBase.cs
@@ -62,10 +62,10 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC
///
public AmstradGateArray GateArray { get; set; }
- ///
- /// Renders pixels to the screen
- ///
- //public CRTDevice CRT { get; set; }
+// ///
+// /// Renders pixels to the screen
+// ///
+// public CRTDevice CRT { get; set; }
///
/// The PPI contoller chip
diff --git a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Hardware/Disk/NECUPD765.Definitions.cs b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Hardware/Disk/NECUPD765.Definitions.cs
index cb49b7c6cf..351e993631 100644
--- a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Hardware/Disk/NECUPD765.Definitions.cs
+++ b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Hardware/Disk/NECUPD765.Definitions.cs
@@ -692,10 +692,10 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
///
private class Command
{
- ///
- /// Mask to remove potential parameter bits (5,6, and or 7) in order to identify the command
- ///
- //public int BitMask { get; set; }
+// ///
+// /// Mask to remove potential parameter bits (5,6, and or 7) in order to identify the command
+// ///
+// public int BitMask { get; set; }
///
/// The command code after bitmask has been applied
///
diff --git a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Hardware/SoundOuput/AY38912.cs b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Hardware/SoundOuput/AY38912.cs
index 12c821f345..e249d0c02a 100644
--- a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Hardware/SoundOuput/AY38912.cs
+++ b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Hardware/SoundOuput/AY38912.cs
@@ -379,6 +379,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
///
/// The register array
+ ///
/*
The AY-3-8910/8912 contains 16 internal registers as follows:
@@ -410,7 +411,6 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
The AY-3-8912 ignores bit 7 of this register.
*/
- ///
private int[] _registers = new int[16];
///
diff --git a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/ZXSpectrum.Controllers.cs b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/ZXSpectrum.Controllers.cs
index 749fc03830..59cd117a90 100644
--- a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/ZXSpectrum.Controllers.cs
+++ b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/ZXSpectrum.Controllers.cs
@@ -59,9 +59,9 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
// keyboard
List keys = new List
{
- /// Controller mapping includes all keyboard keys from the following models:
- /// https://upload.wikimedia.org/wikipedia/commons/thumb/3/33/ZXSpectrum48k.jpg/1200px-ZXSpectrum48k.jpg
- /// https://upload.wikimedia.org/wikipedia/commons/c/ca/ZX_Spectrum%2B.jpg
+ // Controller mapping includes all keyboard keys from the following models:
+ // https://upload.wikimedia.org/wikipedia/commons/thumb/3/33/ZXSpectrum48k.jpg/1200px-ZXSpectrum48k.jpg
+ // https://upload.wikimedia.org/wikipedia/commons/c/ca/ZX_Spectrum%2B.jpg
// Keyboard - row 1
"Key True Video", "Key Inv Video", "Key 1", "Key 2", "Key 3", "Key 4", "Key 5", "Key 6", "Key 7", "Key 8", "Key 9", "Key 0", "Key Break",
diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/SNESGraphicsDecoder.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/SNESGraphicsDecoder.cs
index 41fbc650f4..5d3542f3a7 100644
--- a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/SNESGraphicsDecoder.cs
+++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/SNESGraphicsDecoder.cs
@@ -615,29 +615,29 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES
}
}
- ///
- /// returns a tilemap which might be resized into 8x8 physical tiles if the 16x16 logical tilesize is specified
- ///
- //TileEntry[] AdaptTilemap(TileEntry[] map8x8, int tilesWide, int tilesTall, int tilesize)
- //{
- // if (tilesize == 8) return map8x8;
- // int numTiles = tilesWide * tilesTall;
- // var ret = new TileEntry[numTiles * 4];
- // for(int y=0;y
+// /// returns a tilemap which might be resized into 8x8 physical tiles if the 16x16 logical tilesize is specified
+// ///
+// TileEntry[] AdaptTilemap(TileEntry[] map8x8, int tilesWide, int tilesTall, int tilesize)
+// {
+// if (tilesize == 8) return map8x8;
+// int numTiles = tilesWide * tilesTall;
+// var ret = new TileEntry[numTiles * 4];
+// for(int y=0;y
/// decodes a BG. youll still need to paletteize and colorize it.
diff --git a/BizHawk.Emulation.DiscSystem/CDFS/ISOVolumeDescriptor.cs b/BizHawk.Emulation.DiscSystem/CDFS/ISOVolumeDescriptor.cs
index 4a4a5cc4d1..14966b9f26 100644
--- a/BizHawk.Emulation.DiscSystem/CDFS/ISOVolumeDescriptor.cs
+++ b/BizHawk.Emulation.DiscSystem/CDFS/ISOVolumeDescriptor.cs
@@ -165,10 +165,6 @@ namespace BizHawk.Emulation.DiscSystem
/// The block address of the first block of the system Path Table is kept in this field
///
public int AddressOfPathTable;
- ///
- /// This number is used to indicate the revision number of the file structure standard to which the
- /// directory search files conform. It is set to one
- ///
#endregion
diff --git a/BizHawk.Emulation.DiscSystem/Disc.cs b/BizHawk.Emulation.DiscSystem/Disc.cs
index 88b38540ae..6aef0c30e4 100644
--- a/BizHawk.Emulation.DiscSystem/Disc.cs
+++ b/BizHawk.Emulation.DiscSystem/Disc.cs
@@ -96,11 +96,11 @@ namespace BizHawk.Emulation.DiscSystem
return ret;
}
- ///
- /// The DiscMountPolicy used to mount the disc. Consider this read-only.
- /// NOT SURE WE NEED THIS
- ///
- //public DiscMountPolicy DiscMountPolicy;
+// ///
+// /// The DiscMountPolicy used to mount the disc. Consider this read-only.
+// /// NOT SURE WE NEED THIS
+// ///
+// public DiscMountPolicy DiscMountPolicy;
diff --git a/BizHawk.Emulation.DiscSystem/DiscFormats/MDS_Format.cs b/BizHawk.Emulation.DiscSystem/DiscFormats/MDS_Format.cs
index c8ab3222ce..549f906b2d 100644
--- a/BizHawk.Emulation.DiscSystem/DiscFormats/MDS_Format.cs
+++ b/BizHawk.Emulation.DiscSystem/DiscFormats/MDS_Format.cs
@@ -250,10 +250,10 @@ namespace BizHawk.Emulation.DiscSystem
///
public int Session;
- ///
- /// this seems just to be the LBA corresponding to AMIN:ASEC:AFRAME (give or take 150). It's not stored on the disc, and it's redundant.
- ///
- //public int ALBA;
+// ///
+// /// this seems just to be the LBA corresponding to AMIN:ASEC:AFRAME (give or take 150). It's not stored on the disc, and it's redundant.
+// ///
+// public int ALBA;
///
/// this seems just to be the LBA corresponding to PMIN:PSEC:PFRAME (give or take 150).