ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.Core/ProcessorAssemblyArchitecture.cs
(Generate patch)

Comparing trunk/RomCheater.Core/ProcessorAssemblyArchitecture.cs (file contents):
Revision 118 by william, Thu May 10 18:25:36 2012 UTC vs.
Revision 124 by william, Fri May 11 10:58:42 2012 UTC

--- trunk/RomCheater.Core/ProcessorAssemblyArchitecture.cs	2012/05/10 18:25:36	118
+++ trunk/RomCheater.Core/ProcessorAssemblyArchitecture.cs	2012/05/11 10:58:42	124
@@ -32,13 +32,34 @@ namespace System.Reflection
         string _Architecture;
         public string Architecture { get { return _Architecture; } private set { _Architecture = value; } }
         #region processor architecture
+        /// <summary>
+        /// Represents an undefined processor arcitecture
+        /// </summary>
         public const string Undefined = "Undefined";
+        /// <summary>
+        /// Represents a 32-bit processor arcitecture
+        /// </summary>
         public const string x86 = "x86";
+        /// <summary>
+        /// Represents a 64-bit processor arcitecture
+        /// </summary>
         public const string x64 = "x64";
-        public const string Amd64 = "Amd64";
+        /// <summary>
+        /// Represents a 64-bit processor arcitecture (this is equivalent to x64, this is just Amd's nameing convention)
+        /// </summary>
+        public const string Amd64 = x64;
+        /// <summary>
+        /// Represents am Itanium 64-bit processor arcitecture
+        /// </summary>
         public const string Ia64 = "Ia64";
+        /// <summary>
+        /// Represents a 32-bit and 64-bit processor arcitecture (it will run in 32-bit mode for 32-bit systems and 64-bit for non-32bit systems)
+        /// </summary>
         public const string AnyCpu = "AnyCpu";
-        public const string Msil = "Msil";
+        /// <summary>
+        /// Represents a 32-bit and 64-bit processor arcitecture (refered to as AnyCpu)
+        /// </summary>
+        public const string Msil = AnyCpu;
         #endregion
 
         public static string GetProcessorArchitecture(Assembly t)