File: main.fs

package info (click to toggle)
gforth 0.3.0-4
  • links: PTS
  • area: main
  • in suites: slink
  • size: 2,972 kB
  • ctags: 743
  • sloc: ansic: 3,369; sh: 1,410; lisp: 725; makefile: 426; sed: 111
file content (110 lines) | stat: -rw-r--r-- 2,888 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
\ MAIN.FS      Kernal main load file                   20may93jaw

\ Copyright (C) 1995 Free Software Foundation, Inc.

\ This file is part of Gforth.

\ Gforth is free software; you can redistribute it and/or
\ modify it under the terms of the GNU General Public License
\ as published by the Free Software Foundation; either version 2
\ of the License, or (at your option) any later version.

\ This program is distributed in the hope that it will be useful,
\ but WITHOUT ANY WARRANTY; without even the implied warranty of
\ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
\ GNU General Public License for more details.

\ You should have received a copy of the GNU General Public License
\ along with this program; if not, write to the Free Software
\ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

\ : include bl word count included ;
\ we want write include...

\ : : ( -- colon-sys )  Header [ ' : @ ] ALiteral cfa, 0 ] ;
\ : ; ( colon-sys -- )  ?struc postpone exit reveal postpone [ ; immediate
\ : :noname ( -- xt colon-sys )  here [ ' : @ ] ALiteral cfa, 0 ] ;

Create mach-file here over 1+ allot place

include errors.fs
include extend.fs
include search-order.fs

\ include etags.fs

include cross.fs               \ include cross-compiler

decimal

cell 2 = [IF] 32 [ELSE] 256 [THEN] KB makekernel ( size )
\ create image-header
has-header [IF]
0 A,	\ base address
0 ,	\ checksum
0 ,	\ image size (without tags)
,	\ dict size
16 KB ,	\ data stack size
15 KB 512 + ,	\ FP stack size
15 KB ,	\ return stack size
14 KB 512 + ,	\ locals stack size
0 A,	\ code entry point
0 A,	\ throw entry point
16 KB ,	\ unused (possibly tib stack size)
0 ,	\ unused
0 ,	\ data stack base
0 ,	\ fp stack base
0 ,	\ return stack base
0 ,	\ locals stack base
[THEN]

UNLOCK ghost - drop \ ghost must exist because - would be treated as number
LOCK

doc-off
has-prims [IF]
    include aliases.fs             \ include primitive aliases
[ELSE]
    prims-include
    undef-words
    include primitives.fs
    all-words  UNLOCK LOCK
[THEN]
doc-on

0 AConstant forthstart

include vars.fs                \ variables and other stuff
include errore.fs
include version.fs
include kernel.fs              \ load kernel
has-files [IF]
include args.fs
include files.fs               \ load file words
[THEN]
has-locals [IF]
include conditionals.fs        \ load IF and co
[ELSE]
include cond-old.fs            \ load IF and co w/o locals
[THEN]
include tools.fs               \ load tools ( .s dump )
include toolsext.fs
include special.fs             \ special must be last!

\ Setup                                                13feb93py

here normal-dp !
tudp H @ minimal udp !
decimal

has-header [IF]
  here         2 cells !  \ image size
  ' boot >body 8 cells !  \ Entry point
[ELSE]
  >boot
[THEN]

UNLOCK Tlast @
LOCK
1 cells - dup forth-wordlist ! Last !
.unresolved