Explorar el Código

+ added WASM segment flag constants

Nikolay Nikolov hace 3 años
padre
commit
eb8325300e
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. 4 0
      compiler/wasmbase.pas

+ 4 - 0
compiler/wasmbase.pas

@@ -97,6 +97,10 @@ type
     SYMTAB_TABLE    = 5);
 
 const
+  { segment flags }
+  WASM_SEG_FLAG_STRINGS = $01;
+  WASM_SEG_FLAG_TLS     = $02;
+
   { symbol flags }
   WASM_SYM_BINDING_WEAK      = $01;
   WASM_SYM_BINDING_LOCAL     = $02;