~ubuntu-branches/debian/lenny/fpc/lenny

« back to all changes in this revision

Viewing changes to fpcsrc/compiler/systems/i_atari.pas

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-05-17 17:12:11 UTC
  • mfrom: (3.1.9 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080517171211-9qi33xhd9evfa0kg
Tags: 2.2.0-dfsg1-9
[ Torsten Werner ]
* Add Mazen Neifer to Uploaders field.

[ Mazen Neifer ]
* Moved FPC sources into a version dependent directory from /usr/share/fpcsrc
  to /usr/share/fpcsrc/${FPCVERSION}. This allow installing more than on FPC
  release.
* Fixed far call issue in compiler preventing building huge binearies.
  (closes: #477743)
* Updated building dependencies, recomennded and suggested packages.
* Moved fppkg to fp-utils as it is just a helper tool and is not required by
  compiler.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{
 
2
    Copyright (c) 1998-2002 by Peter Vreman
 
3
 
 
4
    This unit implements support information structures for atari
 
5
 
 
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
 
 
11
    This program is distributed in the hope that it will be useful,
 
12
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
    GNU General Public License for more details.
 
15
 
 
16
    You should have received a copy of the GNU General Public License
 
17
    along with this program; if not, write to the Free Software
 
18
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
19
 ****************************************************************************
 
20
}
 
21
{ This unit implements support information structures for atari. }
 
22
unit i_atari;
 
23
 
 
24
  interface
 
25
 
 
26
    uses
 
27
       systems;
 
28
 
 
29
    const
 
30
       system_m68k_atari_info : tsysteminfo =
 
31
          (
 
32
            system       : target_m68k_Atari;
 
33
            name         : 'Atari ST/STE';
 
34
            shortname    : 'atari';
 
35
            flags        : [tf_use_8_3];
 
36
            cpu          : cpu_m68k;
 
37
            short_name   : 'ATARI';
 
38
            unit_env     : '';
 
39
            extradefines : '';
 
40
            sharedlibext : '.dll';
 
41
            staticlibext : '.a';
 
42
            exeext       : '.tpp';
 
43
            defext       : '';
 
44
            scriptext    : '';
 
45
            smartext     : '.sl';
 
46
            unitext      : '.ppu';
 
47
            unitlibext   : '.ppl';
 
48
            asmext       : '.s';
 
49
            objext       : '.o';
 
50
            resext       : '.res';
 
51
            resobjext    : '.or';
 
52
            staticlibprefix : '';
 
53
            sharedlibprefix : '';
 
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
 
 
75
  implementation
 
76
 
 
77
initialization
 
78
{$ifdef cpu68}
 
79
  {$ifdef atari}
 
80
    set_source_info(system_m68k_atari_info);
 
81
  {$endif atari}
 
82
{$endif cpu68}
 
83
end.