Annotation of gforth/kernel/main.fs, revision 1.48

1.22      crook       1: \ MAIN.FS      Kernel main load file                   20may93jaw
1.1       anton       2: 
1.44      anton       3: \ Copyright (C) 1995,1996,1997,1998,2000,2003,2006,2007,2008,2011 Free Software Foundation, Inc.
1.1       anton       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.38      anton       9: \ as published by the Free Software Foundation, either version 3
1.1       anton      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.38      anton      18: \ along with this program. If not, see http://www.gnu.org/licenses/.
1.1       anton      19: 
                     20: Create mach-file here over 1+ allot place
                     21: 
1.18      jwilke     22: 0 [IF]
                     23: \ debugging: produce a relocation and a symbol table
                     24: s" rel-table" r/w create-file throw
                     25: Constant fd-relocation-table
                     26: 
                     27: \ debuggging: produce a symbol table
                     28: s" sym-table" r/w create-file throw
                     29: Constant fd-symbol-table
                     30: [THEN]
                     31: 
                     32: 
1.43      anton      33: parse-name vocabulary find-name 0= [IF]
1.22      crook      34:     \ if search order stuff is missing assume we are compiling on a gforth
                     35:     \ system and include it.
                     36:     \ We want the files taken from our current gforth installation
                     37:     \ so we don't include relatively to this file
1.40      anton      38:     require ./../startup.fs
1.18      jwilke     39: [THEN]
1.1       anton      40: 
                     41: \ include etags.fs
                     42: 
1.22      crook      43: include ./../cross.fs              \ cross-compiler
1.1       anton      44: 
                     45: decimal
                     46: 
1.35      pazsan     47: has? rom 0= [IF]
                     48:     has? kernel-start has? kernel-size makekernel
                     49: [THEN]
                     50:     \ create image-header
1.4       jwilke     51: has? header [IF]
1.29      jwilke     52: here 1802 over 
1.23      jwilke     53:     A,                  \ base address
1.22      crook      54:     0 ,                 \ checksum
                     55:     0 ,                 \ image size (without tags)
1.23      jwilke     56: has? kernel-size
                     57:     ,                   \ dict size
1.22      crook      58:     has? stack-size ,   \ data stack size
                     59:     has? fstack-size ,  \ FP stack size
                     60:     has? rstack-size ,  \ return stack size
                     61:     has? lstack-size ,  \ locals stack size
1.48    ! pazsan     62:     0 A,                \ boot entry point
1.22      crook      63:     0 A,                \ throw entry point
1.48    ! pazsan     64:     0 A,                \ quit entry point
        !            65:     0 A,                \ execute entry point
        !            66:     0 ,                 \ base of DOUBLE_INDIRECT xts[], for comp-i.fs
1.1       anton      67: [THEN]
                     68: 
                     69: doc-off
1.4       jwilke     70: has? prims [IF]
1.22      crook      71:     include ./aliases.fs             \ primitive aliases
1.1       anton      72: [ELSE]
                     73:     prims-include
                     74:     undef-words
1.17      pazsan     75:     include prim.fs
1.24      jwilke     76:     all-words  
1.1       anton      77: [THEN]
                     78: doc-on
                     79: 
1.26      jwilke     80: has? header [IF]
1.29      jwilke     81: 1802 <> [IF] .s cr .( header start address expected!) cr uffz [THEN]
1.28      jwilke     82: AConstant image-header
1.26      jwilke     83: : forthstart image-header @ ;
                     84: [THEN]
                     85: 
1.23      jwilke     86: \ 0 AConstant forthstart
1.1       anton      87: 
1.22      crook      88: \ include ./vars.fs                  \ variables and other stuff
                     89: \ include kernel/version.fs          \ is in $(build)/kernel
                     90: include ./kernel.fs                  \ kernel
1.14      jwilke     91: \ include ./errore.fs
1.13      jwilke     92: include ./doers.fs
1.4       jwilke     93: has? file [IF]
1.22      crook      94:     include ./args.fs
                     95:     include ./files.fs               \ file words
                     96:     include ./paths.fs
                     97:     include ./require.fs
1.1       anton      98: [THEN]
1.6       pazsan     99: 
                    100: has? compiler [IF]
1.22      crook     101:     has? glocals [IF]
                    102:         include ./cond.fs            \ IF and co.
                    103:     [ELSE]
                    104:         include ./cond-old.fs        \ IF and co. withoutlocals
                    105:     [THEN]
                    106:     \ these two games can be added to provide complex examples for the 4stack
                    107:     \ and misc simulators (see arch/4stack/README and arch/misc/README).
1.34      pazsan    108:     has? games [IF]
                    109:        include arch/misc/tt.fs
1.45      dvdkhlng  110:         \ disabled, as cross-compilation support seems broken currently:
1.46      dvdkhlng  111:         include arch/misc/sokoban.fs
1.34      pazsan    112:     [THEN]
1.6       pazsan    113: [THEN]
1.15      jwilke    114: include ./quotes.fs
1.35      pazsan    115: has? ec 0= [IF]
1.13      jwilke    116: include ./toolsext.fs
1.36      pazsan    117: [THEN]
1.13      jwilke    118: include ./tools.fs               \ load tools ( .s dump )
                    119: include ./getdoers.fs
1.1       anton     120: 
                    121: \ Setup                                                13feb93py
                    122: 
1.36      pazsan    123: include ./pass.fs                    \ pass pointers from cross to target
                    124: 
1.4       jwilke    125: has? header [IF]
1.24      jwilke    126:     \ set image size
                    127:     here image-header 2 cells + !         
1.48    ! pazsan    128:     ." set image entry point" cr
        !           129:     ' boot >body  image-header 8 cells + A!
        !           130:     ' quit >body  image-header #10 cells + A!
        !           131:     ' do-execute >body image-header #11 cells + A!
1.1       anton     132: [ELSE]
1.22      crook     133:     >boot
1.1       anton     134: [THEN]
1.16      jwilke    135: 
1.22      crook     136: .unresolved                          \ how did we do?

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