mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-13 02:41:50 +02:00
+ added ti8086inlinenode
git-svn-id: branches/i8086@23833 -
This commit is contained in:
parent
6757fe5752
commit
e95d22d0f8
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -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
|
||||
|
@ -52,8 +52,8 @@ unit cpunode;
|
||||
n8086add{,
|
||||
n386cal,
|
||||
n386mem,
|
||||
n386set,
|
||||
n386inl},
|
||||
n386set},
|
||||
n8086inl,
|
||||
n8086mat
|
||||
;
|
||||
|
||||
|
42
compiler/i8086/n8086inl.pas
Normal file
42
compiler/i8086/n8086inl.pas
Normal 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.
|
Loading…
Reference in New Issue
Block a user