-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConstants.cs
39 lines (35 loc) · 960 Bytes
/
Constants.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* Constants.cs
*
* Copyright (C) 2024 Elletra
*
* This file is part of the DSO Sharp source code. It may be used under the BSD 3-Clause License.
*
* For full terms, see the LICENSE file or visit https://spdx.org/licenses/BSD-3-Clause.html
*/
namespace DSO.Constants
{
static public class Decompiler
{
public const string AUTHOR = "Elletra";
public const string VERSION = "2.1.0";
public const string EXTENSION = ".dso";
public const string DISASM_EXTENSION = ".disasm";
static public class GameVersions
{
public const uint TGE10 = 33;
public const uint TGE14 = 36;
public const uint TCON = 38;
public const uint T2 = 174;
public const uint TFD = 33;
public const uint BLV1 = 90;
public const uint BLV20 = 190;
public const uint BLV21 = 210;
}
}
static public class Disassembler
{
public const int VALUE_COLUMN_LENGTH = 32;
public const int VALUE_TRUNCATE_LENGTH = VALUE_COLUMN_LENGTH - 8;
}
}