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

1.1       pazsan      1: \ Parameter for target systems                         06oct92py
                      2: 
1.3     ! anton       3: \ Copyright (C) 1995,2000 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
                      9: \ as published by the Free Software Foundation; either version 2
                     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
                     18: \ along with this program; if not, write to the Free Software
1.2       anton      19: \ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
1.1       pazsan     20: 
                     21:     4 Constant cell
                     22:     2 Constant cell<<
                     23:     5 Constant cell>bit
                     24:    20 Constant bits/char
                     25:     4 Constant float
                     26:     4 Constant /maxalign
                     27:  true Constant bigendian
                     28: ( true=big, false=little )
                     29: 
                     30: \ feature list
                     31: 
                     32: \ generic mach file for pc gforth                              03sep97jaw
                     33: 
                     34: true Constant NIL  \ relocating
                     35: 
                     36: >ENVIRON
                     37: 
                     38: false Constant file            \ controls the presence of the
                     39:                                \ file access wordset
                     40: false Constant OS              \ flag to indicate a operating system
                     41: 
                     42: true Constant prims            \ true: primitives are c-code
                     43: 
                     44: false Constant floating                \ floating point wordset is present
                     45: 
                     46: false Constant glocals         \ gforth locals are present
                     47:                                \ will be loaded
                     48: false Constant dcomps          \ double number comparisons
                     49: 
                     50: false Constant hash            \ hashing primitives are loaded/present
                     51: 
                     52: false Constant xconds          \ used together with glocals,
                     53:                                \ special conditionals supporting gforths'
                     54:                                \ local variables
                     55: true Constant header           \ save a header information
                     56: 
                     57: true Constant ec
                     58: true Constant relocate
                     59: false Constant crlf
                     60: 
                     61: 28 KB Constant kernel-size
                     62: 40 Constant stack-size
                     63: 140 Constant rstack-size
                     64: 40 Constant fstack-size
                     65: 40 Constant lstack-size

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