cputarg.pas 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. $Id$
  3. Copyright (c) 2001 by Peter Vreman
  4. Includes the x86-64 dependent target units
  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. { This unit includes the x86-64 dependent target units. }
  19. unit cputarg;
  20. {$i fpcdefs.inc}
  21. interface
  22. implementation
  23. uses
  24. systems { prevent a syntax error when nothing is included }
  25. {**************************************
  26. Targets
  27. **************************************}
  28. {$ifndef NOTARGETLINUX}
  29. ,t_linux
  30. {$endif}
  31. {$ifndef NOTARGETFREEBSD}
  32. ,t_fbsd
  33. {$endif}
  34. {$ifndef NOTARGETWIN32}
  35. ,t_win32
  36. {$endif}
  37. {**************************************
  38. Assemblers
  39. **************************************}
  40. {$ifndef NOAGX86_64ATT}
  41. ,agx64att
  42. {$endif}
  43. ,ogcoff
  44. ,ogelf
  45. ;
  46. end.
  47. {
  48. $Log$
  49. Revision 1.3 2002-09-07 15:25:15 peter
  50. * old logs removed and tabs fixed
  51. Revision 1.2 2002/07/25 22:55:34 florian
  52. * several fixes, small test units can be compiled
  53. Revision 1.1 2002/07/24 22:38:15 florian
  54. + initial release of x86-64 target code
  55. }