Annotation of gforth/arch/sharc/mach.fs, revision 1.6

1.1       pazsan      1: \ Parameter for target systems                         06oct92py
                      2: 
1.6     ! anton       3: \ Copyright (C) 1995,2000,2003,2007 Free Software Foundation, Inc.
1.1       pazsan      4: 
                      5: \ This file is part of Gforth.
                      6: 
                      7: \ Gforth is free software; you can redistribute it and/or
                      8: \ modify it under the terms of the GNU General Public License
1.5       anton       9: \ as published by the Free Software Foundation, either version 3
1.1       pazsan     10: \ of the License, or (at your option) any later version.
                     11: 
                     12: \ This program is distributed in the hope that it will be useful,
                     13: \ but WITHOUT ANY WARRANTY; without even the implied warranty of
                     14: \ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     15: \ GNU General Public License for more details.
                     16: 
                     17: \ You should have received a copy of the GNU General Public License
1.5       anton      18: \ along with this program. If not, see http://www.gnu.org/licenses/.
1.1       pazsan     19: 
                     20:     4 Constant cell
                     21:     2 Constant cell<<
                     22:     5 Constant cell>bit
                     23:    20 Constant bits/char
                     24:     4 Constant float
                     25:     4 Constant /maxalign
                     26:  true Constant bigendian
                     27: ( true=big, false=little )
                     28: 
                     29: \ feature list
                     30: 
                     31: \ generic mach file for pc gforth                              03sep97jaw
                     32: 
                     33: true Constant NIL  \ relocating
                     34: 
                     35: >ENVIRON
                     36: 
                     37: false Constant file            \ controls the presence of the
                     38:                                \ file access wordset
                     39: false Constant OS              \ flag to indicate a operating system
                     40: 
                     41: true Constant prims            \ true: primitives are c-code
                     42: 
                     43: false Constant floating                \ floating point wordset is present
                     44: 
                     45: false Constant glocals         \ gforth locals are present
                     46:                                \ will be loaded
                     47: false Constant dcomps          \ double number comparisons
                     48: 
                     49: false Constant hash            \ hashing primitives are loaded/present
                     50: 
                     51: false Constant xconds          \ used together with glocals,
                     52:                                \ special conditionals supporting gforths'
                     53:                                \ local variables
                     54: true Constant header           \ save a header information
                     55: 
                     56: true Constant ec
                     57: true Constant relocate
                     58: false Constant crlf
                     59: 
                     60: 28 KB Constant kernel-size
                     61: 40 Constant stack-size
                     62: 140 Constant rstack-size
                     63: 40 Constant fstack-size
                     64: 40 Constant lstack-size

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