ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater/MemorySizeConstants.cs
Revision: 378
Committed: Tue Jun 19 07:56:36 2012 UTC (10 years, 9 months ago) by william
File size: 422 byte(s)
Log Message:
use uint instead of int for memory addresses

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     public const uint MaximumAddress = int.MaxValue;
12 william 349
13 william 378 public const uint MinimumSearchAddress = 0x10000000;
14     public const uint MaximumSearchAddress = 0x87359400;
15 william 282 }
16     }