ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater/MemorySizeConstants.cs
Revision: 398
Committed: Wed Jun 20 12:16:34 2012 UTC (11 years, 3 months ago) by william
File size: 442 byte(s)
Log Message:
MemmoryProvider: using statements

File Contents

# Content
1 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 public const uint MinimumAddress = 0x00000000;
11 public const uint MaximumAddressSize = int.MaxValue - 0x38;
12
13 public const uint MinimumSearchAddress = MinimumAddress;
14 public const uint MaximumSearchSize = MaximumAddressSize;
15 }
16 }