t_macos.pas 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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(system_m68k_macos_info);
  33. {$endif m68k}
  34. {$ifdef powerpc}
  35. RegisterTarget(system_powerpc_macos_info);
  36. {$endif powerpc}
  37. end.
  38. {
  39. $Log$
  40. Revision 1.1 2002-09-06 15:03:50 carl
  41. * moved files to systems directory
  42. Revision 1.13 2002/08/20 21:40:44 florian
  43. + target macos for ppc added
  44. + frame work for mpw assembler output
  45. Revision 1.12 2002/07/26 21:15:46 florian
  46. * rewrote the system handling
  47. Revision 1.11 2002/05/18 13:34:27 peter
  48. * readded missing revisions
  49. Revision 1.10 2002/05/16 19:46:53 carl
  50. + defines.inc -> fpcdefs.inc to avoid conflicts if compiling by hand
  51. + try to fix temp allocation (still in ifdef)
  52. + generic constructor calls
  53. + start of tassembler / tmodulebase class cleanup
  54. Revision 1.8 2002/04/22 18:19:22 carl
  55. - remove use_bound_instruction field
  56. Revision 1.7 2002/04/20 21:43:18 carl
  57. * fix stack size for some targets
  58. + add offset to parameters from frame pointer info.
  59. - remove some unused stuff
  60. Revision 1.6 2002/04/15 19:16:57 carl
  61. - remove size_of_pointer field
  62. }