fpc/packages/extra/amunits/units/romboot_base.pas
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

41 lines
967 B
ObjectPascal

{
This file is part of the Free Pascal run time library.
A file in Amiga system run time library.
Copyright (c) 1998 by Nils Sjoholm
member of the Amiga RTL development team.
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
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.
**********************************************************************}
unit romboot_base;
INTERFACE
uses exec;
Type
pRomBootBase = ^tRomBootBase;
tRomBootBase = record
LibNode : tLibrary;
ExecBase : pExecBase;
BootList : tList;
Reserved : Array [0..3] of Longint;
{ for future expansion }
end;
Const
ROMBOOT_NAME : PChar = 'romboot.library';
IMPLEMENTATION
end.