+ added ti8086inlinenode

git-svn-id: branches/i8086@23833 -
This commit is contained in:
nickysn 2013-03-14 15:15:32 +00:00
parent 6757fe5752
commit e95d22d0f8
3 changed files with 45 additions and 2 deletions

1
.gitattributes vendored
View File

@ -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

View File

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

View File

@ -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.