cgi3862.pas 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. $Id$
  3. Copyright (c) 1993-98 by Florian Klaempfl
  4. This unit generates i386 (or better) assembler from the parse tree
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. ****************************************************************************
  17. }
  18. {$ifdef tp}
  19. {$E+,F+,N+,D+,L+,Y+}
  20. {$endif}
  21. unit cgi3862;
  22. interface
  23. uses
  24. verbose,cobjects,systems,globals,tree,
  25. symtable,types,strings,pass_1,hcodegen,
  26. aasm,i386,tgeni386,files,cgai386;
  27. procedure secondadd(var p : ptree);
  28. procedure secondaddstring(var p : ptree);
  29. procedure secondas(var p : ptree);
  30. procedure secondis(var p : ptree);
  31. procedure secondloadvmt(var p : ptree);
  32. implementation
  33. uses
  34. cgi386;
  35. {$I cgi386ad.inc}
  36. end.
  37. {
  38. $Log$
  39. Revision 1.2 1998-04-21 10:16:47 peter
  40. * patches from strasbourg
  41. * objects is not used anymore in the fpc compiled version
  42. Revision 1.1.1.1 1998/03/25 11:18:12 root
  43. * Restored version
  44. Revision 1.9 1998/03/10 01:17:18 peter
  45. * all files have the same header
  46. * messages are fully implemented, EXTDEBUG uses Comment()
  47. + AG... files for the Assembler generation
  48. }