ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater/MemorySizeConstants.cs
Revision: 405
Committed: Thu Jun 21 14:38:54 2012 UTC (10 years, 11 months ago) by william
File size: 423 byte(s)
Log Message:

File Contents

# User Rev Content
1 william 282 using System;
2     using System.Collections.Generic;
3     using System.Linq;
4     using System.Text;
5    
6     namespace RomCheater
7     {
8     public static class MemorySizeConstants
9     {
10 william 378 public const uint MinimumAddress = 0x00000000;
11 william 398 public const uint MaximumAddressSize = int.MaxValue - 0x38;
12 william 349
13 william 405 public const uint MinimumSearchAddress = 0x0;
14     public const uint MaximumSearchSize = 0x1f000000;
15 william 282 }
16     }