cpunode.pas 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {*****************************************************************************}
  2. { File : cpunode.pas }
  3. { Author : Mazen NEIFER }
  4. { Project : Free Pascal Compiler (FPC) }
  5. { Creation date : 2002\26\26 }
  6. { Last modification date : 2002\07\14 }
  7. { Licence : GPL }
  8. { Bug report : [email protected] }
  9. {*****************************************************************************}
  10. {
  11. $Id$
  12. Copyright (c) 2000 by Florian Klaempfl
  13. Includes the iSPARC code generator
  14. This program is free software; you can redistribute it and/or modify
  15. it under the terms of the GNU General Public License as published by
  16. the Free Software Foundation; either version 2 of the License, or
  17. (at your option) any later version.
  18. This program is distributed in the hope that it will be useful,
  19. but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. GNU General Public License for more details.
  22. You should have received a copy of the GNU General Public License
  23. along with this program; if not, write to the Free Software
  24. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  25. ****************************************************************************}
  26. UNIT cpunode;
  27. {$INCLUDE fpcdefs.inc}
  28. INTERFACE
  29. {This unit is used to define the specific CPU implementations. All needed
  30. actions are included in the INITALIZATION part of these units. This explains
  31. the behaviour of such a unit having just a USES clause!}
  32. IMPLEMENTATION
  33. USES
  34. ncgbas,ncgflw,ncgcnv,ncgld,ncgmem,ncgcon,{ncgset,}
  35. naddcpu,ncpucall,{n386con,n386cnv,n386flw,n386mat,n386mem,}
  36. {n386set,n386inl,n386opt,}ncpucnv,
  37. { this not really a node }
  38. {nSPARCobj,}rgcpu;
  39. END.