-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsee-ext.fs
87 lines (71 loc) · 2.32 KB
/
see-ext.fs
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
\ see-ext.fs extentions for see locals, floats
\ Copyright (C) 1995,1996,1997,2003,2007,2012,2014 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 3
\ 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, see http://www.gnu.org/licenses/.
\ made extra 26jan97jaw
get-current also see-voc definitions
: c-loop-lp+!# c-loop cell+ ;
: c-?branch-lp+!# c-?branch cell+ ;
: c-branch-lp+!# c-branch cell+ ;
: c-@local#
Display? IF
S" @local" 0 .string
dup @ dup cell/ abs 0 <# #S rot sign #> 0 .string bl cemit
THEN
cell+ ;
: c-flit
Display? IF
dup f@ scratch represent 0=
IF 2drop scratch 3 min 0 .string
ELSE
IF '- cemit THEN 1-
scratch over c@ cemit '. cemit 1 /string 0 .string
'E cemit
dup abs 0 <# #S rot sign #> 0 .string bl cemit
THEN THEN
float+ ;
: c-f@local#
Display? IF
S" f@local" 0 .string
dup @ dup float/ abs 0 <# #S rot sign #> 0 .string bl cemit
THEN
cell+ ;
: c-laddr#
Display? IF
S" laddr# " 0 .string
dup @ dup abs 0 <# #S rot sign #> 0 .string bl cemit
THEN
cell+ ;
: c-lp+!#
Display? IF
S" lp+!# " 0 .string
dup @ dup abs 0 <# #S rot sign #> 0 .string bl cemit
THEN
cell+ ;
create c-extend1
' @local# A, ' c-@local# A,
[ifdef] flit ' flit A, ' c-flit A, [then]
' f@local# A, ' c-f@local# A,
' laddr# A, ' c-laddr# A,
' lp+!# A, ' c-lp+!# A,
' ?branch-lp+!# A, ' c-?branch-lp+!# A,
' branch-lp+!# A, ' c-branch-lp+!# A,
' (loop)-lp+!# A, ' c-loop-lp+!# A,
' (+loop)-lp+!# A, ' c-loop-lp+!# A,
' (s+loop)-lp+!# A, ' c-loop-lp+!# A,
' (-loop)-lp+!# A, ' c-loop-lp+!# A,
' (next)-lp+!# A, ' c-loop-lp+!# A,
0 , here 0 ,
\ extend see-table
c-extend1 c-extender @ a!
c-extender !
set-current previous