Selaa lähdekoodia

+ added ti8086inlinenode

git-svn-id: branches/i8086@23833 -
nickysn 12 vuotta sitten
vanhempi
commit
e95d22d0f8
3 muutettua tiedostoa jossa 45 lisäystä ja 2 poistoa
  1. 1 0
      .gitattributes
  2. 2 2
      compiler/i8086/cpunode.pas
  3. 42 0
      compiler/i8086/n8086inl.pas

+ 1 - 0
.gitattributes

@@ -253,6 +253,7 @@ compiler/i8086/i386op.inc svneol=native#text/plain
 compiler/i8086/i386prop.inc svneol=native#text/plain
 compiler/i8086/i386tab.inc svneol=native#text/plain
 compiler/i8086/n8086add.pas svneol=native#text/plain
+compiler/i8086/n8086inl.pas svneol=native#text/plain
 compiler/i8086/n8086mat.pas svneol=native#text/plain
 compiler/i8086/r386ari.inc svneol=native#text/plain
 compiler/i8086/r386att.inc svneol=native#text/plain

+ 2 - 2
compiler/i8086/cpunode.pas

@@ -52,8 +52,8 @@ unit cpunode;
        n8086add{,
        n386cal,
        n386mem,
-       n386set,
-       n386inl},
+       n386set},
+       n8086inl,
        n8086mat
        ;
 

+ 42 - 0
compiler/i8086/n8086inl.pas

@@ -0,0 +1,42 @@
+{
+    Copyright (c) 1998-2002 by Florian Klaempfl
+
+    Generate i8086 inline nodes
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+ ****************************************************************************
+}
+unit n8086inl;
+
+{$i fpcdefs.inc}
+
+interface
+
+    uses
+       nx86inl;
+
+    type
+       ti8086inlinenode = class(tx86inlinenode)
+       end;
+
+implementation
+
+  uses
+    ninl;
+
+begin
+   cinlinenode:=ti8086inlinenode;
+end.