Browse Source

+ standard assembler for x86-64

git-svn-id: trunk@2934 -
florian 19 years ago
parent
commit
2a48eacea7
1 changed files with 8 additions and 0 deletions
  1. 8 0
      compiler/x86_64/rax64att.pas

+ 8 - 0
compiler/x86_64/rax64att.pas

@@ -64,6 +64,14 @@ const
             casmreader : tx8664attreader;
             casmreader : tx8664attreader;
           );
           );
 
 
+  asmmode_x86_64_standard_info : tasmmodeinfo =
+          (
+            id    : asmmode_standard;
+            idtxt : 'STANDARD';
+            casmreader : tx8664attreader;
+          );
+
 initialization
 initialization
   RegisterAsmMode(asmmode_x86_64_gas_info);
   RegisterAsmMode(asmmode_x86_64_gas_info);
+  RegisterAsmMode(asmmode_x86_64_standard_info);
 end.
 end.