i_atari.pas 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. {
  2. $Id$
  3. Copyright (c) 1998-2002 by Peter Vreman
  4. This unit implements support information structures for atari
  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 implements support information structures for atari. }
  19. unit i_atari;
  20. interface
  21. uses
  22. systems;
  23. const
  24. system_m68k_atari_info : tsysteminfo =
  25. (
  26. system : target_m68k_Atari;
  27. name : 'Atari ST/STE';
  28. shortname : 'atari';
  29. flags : [tf_use_8_3];
  30. cpu : cpu_m68k;
  31. short_name : 'ATARI';
  32. unit_env : '';
  33. extradefines : '';
  34. sharedlibext : '.dll';
  35. staticlibext : '.a';
  36. sourceext : '.pp';
  37. pasext : '.pas';
  38. exeext : '.tpp';
  39. defext : '';
  40. scriptext : '';
  41. smartext : '.sl';
  42. unitext : '.ppu';
  43. unitlibext : '.ppl';
  44. asmext : '.s';
  45. objext : '.o';
  46. resext : '.res';
  47. resobjext : '.or';
  48. staticlibprefix : '';
  49. sharedlibprefix : '';
  50. Cprefix : '_';
  51. newline : #10;
  52. dirsep : '/';
  53. files_case_relevent : true;
  54. assem : as_gas;
  55. assemextern : as_gas;
  56. link : ld_m68k_atari;
  57. linkextern : ld_m68k_atari;
  58. ar : ar_m68k_ar;
  59. res : res_none;
  60. script : script_unix;
  61. endian : endian_big;
  62. stackalignment : 2;
  63. maxCrecordalignment : 4;
  64. stacksize : 8192;
  65. DllScanSupported:false;
  66. use_function_relative_addresses : false
  67. );
  68. implementation
  69. initialization
  70. {$ifdef cpu68}
  71. {$ifdef atari}
  72. set_source_info(system_m68k_atari_info);
  73. {$endif atari}
  74. {$endif cpu68}
  75. end.
  76. {
  77. $Log$
  78. Revision 1.5 2004-12-28 20:43:01 hajny
  79. * 8.3 fixes (short target name in paths)
  80. Revision 1.4 2004/10/25 15:38:41 peter
  81. * heap and heapsize removed
  82. * checkpointer fixes
  83. Revision 1.3 2004/06/20 08:55:32 florian
  84. * logs truncated
  85. }