/packages/amunits/src/coreunits/romboot_base.pas

https://github.com/slibre/freepascal · Pascal · 40 lines · 15 code · 9 blank · 16 comment · 0 complexity · 12f16060f480facd4fcd320e3e55cca6 MD5 · raw file

  1. {
  2. This file is part of the Free Pascal run time library.
  3. A file in Amiga system run time library.
  4. Copyright (c) 1998 by Nils Sjoholm
  5. member of the Amiga RTL development team.
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. unit romboot_base;
  13. INTERFACE
  14. uses exec;
  15. Type
  16. pRomBootBase = ^tRomBootBase;
  17. tRomBootBase = record
  18. LibNode : tLibrary;
  19. ExecBase : pExecBase;
  20. BootList : tList;
  21. Reserved : Array [0..3] of Longint;
  22. { for future expansion }
  23. end;
  24. Const
  25. ROMBOOT_NAME : PChar = 'romboot.library';
  26. IMPLEMENTATION
  27. end.