2
0

i_atari.pas 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. Copyright (c) 1998-2002 by Peter Vreman
  3. This unit implements support information structures for atari
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. ****************************************************************************
  16. }
  17. { This unit implements support information structures for atari. }
  18. unit i_atari;
  19. {$i fpcdefs.inc}
  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. exeext : '.tpp';
  35. defext : '';
  36. scriptext : '';
  37. smartext : '.sl';
  38. unitext : '.ppu';
  39. unitlibext : '.ppl';
  40. asmext : '.s';
  41. objext : '.o';
  42. resext : '.res';
  43. resobjext : '.or';
  44. sharedlibext : '.dll';
  45. staticlibext : '.a';
  46. staticlibprefix : '';
  47. sharedlibprefix : '';
  48. sharedClibext : '.dll';
  49. staticClibext : '.a';
  50. staticClibprefix : 'lib';
  51. sharedClibprefix : '';
  52. importlibprefix : 'libimp';
  53. importlibext : '.a';
  54. p_ext_support : false;
  55. Cprefix : '_';
  56. newline : #10;
  57. dirsep : '/';
  58. files_case_relevent : true;
  59. assem : as_gas;
  60. assemextern : as_gas;
  61. link : ld_m68k_atari;
  62. linkextern : ld_m68k_atari;
  63. ar : ar_m68k_ar;
  64. res : res_none;
  65. dbg : dbg_stabs;
  66. script : script_unix;
  67. endian : endian_big;
  68. stackalignment : 2;
  69. maxCrecordalignment : 4;
  70. stacksize : 8192;
  71. DllScanSupported:false;
  72. use_function_relative_addresses : false
  73. );
  74. implementation
  75. initialization
  76. {$ifdef cpu68}
  77. {$ifdef atari}
  78. set_source_info(system_m68k_atari_info);
  79. {$endif atari}
  80. {$endif cpu68}
  81. end.