Revision: | 357 |
Committed: | Sun Jun 10 00:47:58 2012 UTC (10 years, 11 months ago) by william |
File size: | 418 byte(s) |
Log Message: |
# | 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 int MinimumAddress = 0x00000000; |
11 | public const int MaximumAddress = int.MaxValue; |
12 | |
13 | public const int MinimumSearchAddress = 0x00000000; |
14 | public const int MaximumSearchAddress = 0x05000000; |
15 | } |
16 | } |