t_amiga.pas 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. $Id$
  3. Copyright (c) 2001-2002 by Peter Vreman
  4. This unit implements support import,export,link routines
  5. for the (i386) Amiga target
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2 of the License, or
  9. (at your option) any later version.
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. GNU General Public License for more details.
  14. You should have received a copy of the GNU General Public License
  15. along with this program; if not, write to the Free Software
  16. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. ****************************************************************************
  18. }
  19. unit t_amiga;
  20. {$i fpcdefs.inc}
  21. interface
  22. implementation
  23. uses
  24. link,
  25. cutils,cclasses,
  26. globtype,globals,systems,verbose,script,fmodule,i_amiga;
  27. {*****************************************************************************
  28. Initialize
  29. *****************************************************************************}
  30. initialization
  31. RegisterTarget(system_m68k_amiga_info);
  32. end.
  33. {
  34. $Log$
  35. Revision 1.1 2002-09-06 15:03:51 carl
  36. * moved files to systems directory
  37. Revision 1.12 2002/07/26 21:15:45 florian
  38. * rewrote the system handling
  39. Revision 1.11 2002/05/18 13:34:26 peter
  40. * readded missing revisions
  41. Revision 1.10 2002/05/16 19:46:53 carl
  42. + defines.inc -> fpcdefs.inc to avoid conflicts if compiling by hand
  43. + try to fix temp allocation (still in ifdef)
  44. + generic constructor calls
  45. + start of tassembler / tmodulebase class cleanup
  46. Revision 1.8 2002/04/22 18:19:22 carl
  47. - remove use_bound_instruction field
  48. Revision 1.7 2002/04/20 21:43:18 carl
  49. * fix stack size for some targets
  50. + add offset to parameters from frame pointer info.
  51. - remove some unused stuff
  52. Revision 1.6 2002/04/15 19:16:57 carl
  53. - remove size_of_pointer field
  54. }