Home | History | Annotate | Line # | Download | only in aout
      1       1.1     skrll /* host.h - Parameters about the a.out format, based on the host system
      2       1.1     skrll    on which the program is compiled.
      3       1.1     skrll 
      4  1.1.1.11  christos    Copyright (C) 2001-2026 Free Software Foundation, Inc.
      5       1.1     skrll 
      6       1.1     skrll    This program is free software; you can redistribute it and/or modify
      7       1.1     skrll    it under the terms of the GNU General Public License as published by
      8   1.1.1.2  christos    the Free Software Foundation; either version 3 of the License, or
      9       1.1     skrll    (at your option) any later version.
     10       1.1     skrll 
     11       1.1     skrll    This program is distributed in the hope that it will be useful,
     12       1.1     skrll    but WITHOUT ANY WARRANTY; without even the implied warranty of
     13       1.1     skrll    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     14       1.1     skrll    GNU General Public License for more details.
     15       1.1     skrll 
     16       1.1     skrll    You should have received a copy of the GNU General Public License
     17       1.1     skrll    along with this program; if not, write to the Free Software
     18   1.1.1.2  christos    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
     19   1.1.1.2  christos    MA 02110-1301, USA.  */
     20       1.1     skrll 
     21       1.1     skrll /* Address of data segment in memory after it is loaded.
     22       1.1     skrll    It is up to you to define SEGMENT_SIZE on machines not listed here.  */
     23       1.1     skrll #ifndef SEGMENT_SIZE
     24       1.1     skrll 
     25   1.1.1.6  christos #if defined(pyr)
     26       1.1     skrll #define SEGMENT_SIZE page_size
     27       1.1     skrll #endif
     28       1.1     skrll 
     29       1.1     skrll #ifdef is68k
     30       1.1     skrll #define SEGMENT_SIZE 0x20000
     31       1.1     skrll #endif
     32       1.1     skrll 
     33       1.1     skrll #endif /*!defined(SEGMENT_SIZE)*/
     34       1.1     skrll 
     35