t_macos.pas 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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_macos;
  20. {$i fpcdefs.inc}
  21. interface
  22. implementation
  23. uses
  24. link,
  25. cutils,cclasses,
  26. globtype,globals,systems,verbose,script,fmodule,i_macos;
  27. {*****************************************************************************
  28. Initialize
  29. *****************************************************************************}
  30. initialization
  31. {$ifdef m68k}
  32. RegisterTarget(target_m68k_macos_info);
  33. {$endif m68k}
  34. {$ifdef powerpc}
  35. RegisterTarget(target_powerpc_macos_info);
  36. {$endif powerpc}
  37. end.
  38. {
  39. $Log$
  40. Revision 1.12 2002-07-26 21:15:46 florian
  41. * rewrote the system handling
  42. Revision 1.11 2002/05/18 13:34:27 peter
  43. * readded missing revisions
  44. Revision 1.10 2002/05/16 19:46:53 carl
  45. + defines.inc -> fpcdefs.inc to avoid conflicts if compiling by hand
  46. + try to fix temp allocation (still in ifdef)
  47. + generic constructor calls
  48. + start of tassembler / tmodulebase class cleanup
  49. Revision 1.8 2002/04/22 18:19:22 carl
  50. - remove use_bound_instruction field
  51. Revision 1.7 2002/04/20 21:43:18 carl
  52. * fix stack size for some targets
  53. + add offset to parameters from frame pointer info.
  54. - remove some unused stuff
  55. Revision 1.6 2002/04/15 19:16:57 carl
  56. - remove size_of_pointer field
  57. }