i_atari.pas 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. exeext : '.tpp';
  37. defext : '';
  38. scriptext : '';
  39. smartext : '.sl';
  40. unitext : '.ppu';
  41. unitlibext : '.ppl';
  42. asmext : '.s';
  43. objext : '.o';
  44. resext : '.res';
  45. resobjext : '.or';
  46. staticlibprefix : '';
  47. sharedlibprefix : '';
  48. p_ext_support : false;
  49. Cprefix : '_';
  50. newline : #10;
  51. dirsep : '/';
  52. files_case_relevent : true;
  53. assem : as_gas;
  54. assemextern : as_gas;
  55. link : ld_m68k_atari;
  56. linkextern : ld_m68k_atari;
  57. ar : ar_m68k_ar;
  58. res : res_none;
  59. script : script_unix;
  60. endian : endian_big;
  61. stackalignment : 2;
  62. maxCrecordalignment : 4;
  63. stacksize : 8192;
  64. DllScanSupported:false;
  65. use_function_relative_addresses : false
  66. );
  67. implementation
  68. initialization
  69. {$ifdef cpu68}
  70. {$ifdef atari}
  71. set_source_info(system_m68k_atari_info);
  72. {$endif atari}
  73. {$endif cpu68}
  74. end.
  75. {
  76. $Log$
  77. Revision 1.7 2005-03-20 22:36:45 olle
  78. * Cleaned up handling of source file extension.
  79. + Added support for .p extension for macos and darwin
  80. Revision 1.6 2005/02/14 17:13:10 peter
  81. * truncate log
  82. }