1 |
using System; |
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
|
6 |
namespace RomCheater.Core |
7 |
{ |
8 |
public static class MemorySizeConstants |
9 |
{ |
10 |
public const ulong MinimumAddress = 0x00000000; |
11 |
public const ulong MinimumSearchAddress = 0x00000000; |
12 |
#region 32-bit (x86) |
13 |
public const ulong MaximumAddressSize_x86 = int.MaxValue; |
14 |
public const ulong MaximumSearchSize_x86 = int.MaxValue; |
15 |
#endregion |
16 |
|
17 |
#region 64-bit (x64) |
18 |
public const ulong MaximumAddressSize_x64 = long.MaxValue; |
19 |
public const ulong MaximumSearchSize_x64 = long.MaxValue; |
20 |
#endregion |
21 |
} |
22 |
} |