mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-05 06:45:37 +01:00
19 lines
672 B
C#
19 lines
672 B
C#
namespace Giants.BinTools.Macro
|
|
{
|
|
public static class MacroInstruction
|
|
{
|
|
public const string IncludeFile = "include";
|
|
public const string MacroDefinitionStart = "macro";
|
|
public const string MacroDefinitionEnd = "macend";
|
|
public const string Define = "#define";
|
|
public const string DefByte = "db";
|
|
public const string DefLong = "dl";
|
|
public const string DefFloat = "df";
|
|
public const string Name0cs = "name0cs";
|
|
public const string GroupUse = "groupuse";
|
|
public const string If = "if";
|
|
public const string Else = "else";
|
|
public const string EndIf = "endif";
|
|
}
|
|
}
|