Annotation of gforth/machpc.fs.in, revision 1.21

1.2       anton       1: \ machpc.fs is generated; source: machpc.fs.in
1.1       pazsan      2: \ generic mach file for pc gforth                              03sep97jaw
                      3: 
1.19      anton       4: \ Copyright (C) 1995,1996,1997,2000,2003,2005,2007 Free Software Foundation, Inc.
1.1       pazsan      5: 
                      6: \ This file is part of Gforth.
                      7: 
                      8: \ Gforth is free software; you can redistribute it and/or
                      9: \ modify it under the terms of the GNU General Public License
1.20      anton      10: \ as published by the Free Software Foundation, either version 3
1.1       pazsan     11: \ of the License, or (at your option) any later version.
                     12: 
                     13: \ This program is distributed in the hope that it will be useful,
                     14: \ but WITHOUT ANY WARRANTY; without even the implied warranty of
                     15: \ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     16: \ GNU General Public License for more details.
                     17: 
                     18: \ You should have received a copy of the GNU General Public License
1.20      anton      19: \ along with this program. If not, see http://www.gnu.org/licenses/.
1.1       pazsan     20: 
                     21: true DefaultValue NIL  \ relocating
                     22: 
                     23: >ENVIRON
                     24: 
1.13      pazsan     25: @EC_MODE@ DefaultValue ec
                     26: 
1.16      pazsan     27: T has? ec H 0= [IF]
1.1       pazsan     28: true DefaultValue file         \ controls the presence of the
                     29:                                \ file access wordset
                     30: true DefaultValue OS           \ flag to indicate a operating system
                     31: 
1.21    ! pazsan     32: \ @FFCALLFLAG@ DefaultValue ffcall \ Foreign Function Calls
1.10      pazsan     33: 
1.21    ! pazsan     34: \ @LIBFFIFLAG@ DefaultValue libffi \ Foreign Function Calls
1.11      pazsan     35: 
1.21    ! pazsan     36: \ @OLDCALLFLAG@ DefaultValue oldcall \ old Foreign Function Calls
1.9       pazsan     37: 
1.1       pazsan     38: true DefaultValue prims                \ true: primitives are c-code
                     39: 
                     40: true DefaultValue floating     \ floating point wordset is present
                     41: 
                     42: true DefaultValue glocals      \ gforth locals are present
                     43:                                \ will be loaded
                     44: true DefaultValue dcomps       \ double number comparisons
                     45: 
                     46: true DefaultValue hash         \ hashing primitives are loaded/present
                     47: 
                     48: true DefaultValue xconds       \ used together with glocals,
                     49:                                \ special conditionals supporting gforths'
                     50:                                \ local variables
                     51: true DefaultValue header       \ save a header information
                     52: 
                     53: true DefaultValue backtrace    \ enables backtrace code
                     54: 
                     55: true DefaultValue new-input    \ enables object oriented input
                     56: 
                     57: @PEEPHOLEFLAG@ DefaultValue peephole      \ enables peephole optimizer
1.9       pazsan     58: 
1.16      pazsan     59: true DefaultValue primcentric   \ enables primcentric code
1.1       pazsan     60: 
1.3       jwilke     61: true DefaultValue abranch       \ enables absolute branches
                     62: 
1.4       pazsan     63: false DefaultValue control-rack \ disable return stack use for control flow
                     64: 
1.1       pazsan     65: false DefaultValue crlf
                     66: 
1.5       anton      67: $100 DefaultValue kernel-start
1.2       anton      68: cell 2 = [IF] &32 KB [ELSE] $100000 cells [THEN] DefaultValue kernel-size
1.1       pazsan     69: 
                     70: &16 KB         DefaultValue stack-size
1.2       anton      71: &16 KB         DefaultValue fstack-size
1.1       pazsan     72: &15 KB         DefaultValue rstack-size
                     73: &14 KB &512 +  DefaultValue lstack-size
1.13      pazsan     74: [ELSE]
                     75: false DefaultValue file                \ controls the presence of the
                     76:                                \ file access wordset
                     77: false DefaultValue OS          \ flag to indicate a operating system
                     78: 
1.16      pazsan     79: true SetValue relocate
                     80: 
                     81: false DefaultValue ffcall \ Foreign Function Calls
1.13      pazsan     82: 
1.16      pazsan     83: false DefaultValue libffi \ Foreign Function Calls
1.13      pazsan     84: 
1.16      pazsan     85: false DefaultValue oldcall \ old Foreign Function Calls
1.13      pazsan     86: 
                     87: true DefaultValue prims                \ true: primitives are c-code
                     88: 
                     89: false DefaultValue floating    \ floating point wordset is present
                     90: 
1.14      pazsan     91: false DefaultValue glocals     \ gforth locals are present
1.13      pazsan     92:                                \ will be loaded
                     93: true DefaultValue dcomps       \ double number comparisons
                     94: 
1.14      pazsan     95: false DefaultValue hash                \ hashing primitives are loaded/present
1.13      pazsan     96: 
1.14      pazsan     97: false DefaultValue xconds      \ used together with glocals,
1.13      pazsan     98:                                \ special conditionals supporting gforths'
                     99:                                \ local variables
                    100: true DefaultValue header       \ save a header information
                    101: 
1.14      pazsan    102: false DefaultValue backtrace   \ enables backtrace code
1.13      pazsan    103: 
1.14      pazsan    104: false DefaultValue new-input   \ enables object oriented input
1.13      pazsan    105: 
1.16      pazsan    106: false DefaultValue peephole     \ enables peephole optimizer
                    107: 
                    108: true DefaultValue primcentric   \ enables primcentric code
1.13      pazsan    109: 
1.17      pazsan    110: true DefaultValue f83headerstring
1.13      pazsan    111: 
                    112: true DefaultValue abranch       \ enables absolute branches
                    113: 
1.17      pazsan    114: true DefaultValue control-rack  \ disable return stack use for control flow
1.13      pazsan    115: 
                    116: false DefaultValue crlf
                    117: 
1.15      pazsan    118: true DefaultValue flash
                    119:     
1.16      pazsan    120: $0 DefaultValue kernel-start   \ no artificial offset
1.18      pazsan    121: &48 KB DefaultValue kernel-size
1.13      pazsan    122: 
                    123: &1 KB          DefaultValue stack-size
                    124: &0 KB          DefaultValue fstack-size
                    125: &1 KB          DefaultValue rstack-size
                    126: &1 KB          DefaultValue lstack-size
                    127: [THEN]

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>