ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater/MemorySizeConstants.cs
Revision: 574
Committed: Thu Jun 6 07:39:04 2013 UTC (10 years, 6 months ago) by william
File size: 433 byte(s)
Log Message:
+ change addresses to ulong -- still need to update other code to handle this

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 ulong MinimumAddress = 0x00000000;
11 public const ulong MaximumAddressSize = ulong.MaxValue;
12
13 public const ulong MinimumSearchAddress = 0x00000000;
14 public const ulong MaximumSearchSize = ulong.MaxValue;
15 }
16 }