Parent Directory
|
Revision Log
+ add serialization writer
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 = 0x10000000; |
14 | public const uint MaximumSearchSize = 0x0f000000; |
15 | } |
16 | } |
ViewVC Help | |
Powered by ViewVC 1.1.22 |