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

Comparing trunk/RomCheater/MemorySizeConstants.cs (file contents):
Revision 348 by william, Tue Jun 5 01:19:54 2012 UTC vs.
Revision 349 by william, Fri Jun 8 04:39:37 2012 UTC

--- trunk/RomCheater/MemorySizeConstants.cs	2012/06/08 04:23:30	348
+++ trunk/RomCheater/MemorySizeConstants.cs	2012/06/08 04:39:37	349
@@ -8,6 +8,9 @@ namespace RomCheater
     public static class MemorySizeConstants
     {
         public const int MinimumAddress = 0x00000000;
-        public const int MaximumAddress = int.MaxValue - 0x38; // any more than this, for byte arrays, causes out of memory exceptions)
+        public const int MaximumAddress = int.MaxValue;
+
+        public const int MinimumSearchAddress = 0x00400000;
+        public const int MaximumSearchAddress = 0x20000000;
     }
 }