Skip to content

Commit

Permalink
Add assembler constants for new assembler options
Browse files Browse the repository at this point in the history
  • Loading branch information
TollyH committed May 13, 2024
1 parent 6c34dc8 commit c462397
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Assembler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,10 @@ public object Clone()
{ "V1_CALL_STACK", () => usingV1Stack ? 1UL : 0UL },
{ "IMPORT_DEPTH", () => (ulong)importStack.Count },
{ "CURRENT_ADDRESS", () => (ulong)program.Count },
{ "FULL_BASE_OPCODES", () => ForceFullOpcodes ? 1UL : 0UL },
{ "OBSOLETE_DIRECTIVES", () => EnableObsoleteDirectives ? 1UL : 0UL },
{ "ESCAPE_SEQUENCES", () => EnableEscapeSequences ? 1UL : 0UL },
{ "FILE_PATH_MACROS", () => EnableFilePathMacros ? 1UL : 0UL },
{
"EXTENSION_SET_SIGNED_AVAIL", () =>
#if EXTENSION_SET_SIGNED
Expand Down

0 comments on commit c462397

Please sign in to comment.