4985 |
kaklik |
1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
|
|
2 |
<html> |
|
|
3 |
<head> |
|
|
4 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
|
|
5 |
<title> dict_minimum.asm </title> |
|
|
6 |
<meta name="keywords" content="amforth programming language Forth ATmega ATMEL"> |
|
|
7 |
<meta name="description" content="amforth - laguage Forth for ATMEL ATmega"> |
|
|
8 |
<!-- AUTOINCLUDE START "Page/Head.en.ihtml" DO NOT REMOVE --> |
|
|
9 |
<link rel="StyleSheet" href="../../../../Web/CSS/MLAB.css" type="text/css" title="MLAB Basic Style"> |
|
|
10 |
<link rel="StyleSheet" href="../../../../Web/CSS/MLAB_Print.css" type="text/css" media="print"> |
|
|
11 |
<link rel="shortcut icon" type="image/x-icon" href="../../../../Web/PIC/MLAB.ico"> |
|
|
12 |
<script type="text/javascript" src="../../../../Web/JS/MLAB_Menu.js"></script> |
|
|
13 |
<!-- AUTOINCLUDE END --> |
|
|
14 |
</head> |
|
|
15 |
|
|
|
16 |
<body lang="en"> |
|
|
17 |
|
|
|
18 |
<!-- AUTOINCLUDE START "Page/Header.en.ihtml" DO NOT REMOVE --> |
|
|
19 |
<!-- ============== HEADER ============== --> |
|
|
20 |
<div class="Header"> |
|
|
21 |
<script type="text/javascript"> |
|
|
22 |
<!-- |
|
|
23 |
SetRelativePath("../../../../"); |
|
|
24 |
DrawHeader(); |
|
|
25 |
// --> |
|
|
26 |
</script> |
|
|
27 |
<noscript> |
|
|
28 |
<p><b> JavaScript is required for including of the header </b></p> |
|
|
29 |
</noscript> |
|
|
30 |
</div> |
|
|
31 |
<!-- AUTOINCLUDE END --> |
|
|
32 |
|
|
|
33 |
<!-- AUTOINCLUDE START "Page/Menu.en.ihtml" DO NOT REMOVE --> |
|
|
34 |
<!-- ============== MENU ============== --> |
|
|
35 |
<div class="Menu"> |
|
|
36 |
<script type="text/javascript"> |
|
|
37 |
<!-- |
|
|
38 |
SetRelativePath("../../../../"); |
|
|
39 |
DrawMenu(); |
|
|
40 |
// --> |
|
|
41 |
</script> |
|
|
42 |
<noscript> |
|
|
43 |
<p><b> JavaScript is required for including of the menu </b><p> |
|
|
44 |
</noscript> |
|
|
45 |
</div> |
|
|
46 |
<!-- AUTOINCLUDE END --> |
|
|
47 |
|
|
|
48 |
<!-- ============== TEXT ============== --> |
|
|
49 |
<div class="Text"> |
|
|
50 |
|
|
|
51 |
<h1> dict_minimum.asm </h1> |
|
|
52 |
|
|
|
53 |
<p> |
|
|
54 |
<input type=button onClick="history.back()" value="Back"> |
|
|
55 |
<input type=button onClick="history.forward()" value="Forward"> |
|
|
56 |
<a href="../WordList.en.html">Jump to Vocabulary</a> |
|
|
57 |
</p> |
|
|
58 |
|
|
|
59 |
<pre> |
|
|
60 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|
|
61 |
; header |
|
|
62 |
; +--1+x--++--2--+--2----0+x...-- |
|
|
63 |
; | VOC | L | XT | PF |
|
|
64 |
; +-------#-----+-----+----....-- |
|
|
65 |
; VOC (flags may be inverted to be flash friendly) |
|
|
66 |
; Bit |
|
|
67 |
; 7 6 5 4-0 |
|
|
68 |
; I U U Length |
|
|
69 |
; I = Immediate |
|
|
70 |
; U = Unused |
|
|
71 |
; Length = length of word name (1..31) |
|
|
72 |
; Length number of bytes, filled to next cell |
|
|
73 |
; L |
|
|
74 |
; Link to previos Dictionary entry or zero for first entry |
|
|
75 |
; XT |
|
|
76 |
; Address of Executable Code |
|
|
77 |
; PF |
|
|
78 |
; Parameter Field (List of XT, Constant Value etc) |
|
|
79 |
|
|
|
80 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|
|
81 |
.include "words/f_cpu.asm" |
|
|
82 |
.include "words/state.asm" |
|
|
83 |
.include "words/base.asm" |
|
|
84 |
.include "words/g_in.asm" |
|
|
85 |
.include "words/sharptib.asm" |
|
|
86 |
.include "words/tib.asm" |
|
|
87 |
.include "words/pad.asm" |
|
|
88 |
.include "words/emit.asm" |
|
|
89 |
.include "words/emitq.asm" |
|
|
90 |
.include "words/key.asm" |
|
|
91 |
.include "words/keyq.asm" |
|
|
92 |
.include "words/slashkey.asm" |
|
|
93 |
|
|
|
94 |
.include "words/dp.asm" |
|
|
95 |
.include "words/head.asm" |
|
|
96 |
.include "words/here.asm" |
|
|
97 |
.include "words/allot.asm" |
|
|
98 |
|
|
|
99 |
.include "words/abort.asm" |
|
|
100 |
|
|
|
101 |
.include "words/literal.asm" |
|
|
102 |
.include "words/comma.asm" |
|
|
103 |
|
|
|
104 |
.include "words/g_mark.asm" |
|
|
105 |
.include "words/g_resolve.asm" |
|
|
106 |
.include "words/l_mark.asm" |
|
|
107 |
.include "words/l_resolve.asm" |
|
|
108 |
|
|
|
109 |
.include "words/if.asm" |
|
|
110 |
.include "words/else.asm" |
|
|
111 |
.include "words/then.asm" |
|
|
112 |
.include "words/begin.asm" |
|
|
113 |
.include "words/while.asm" |
|
|
114 |
.include "words/repeat.asm" |
|
|
115 |
.include "words/until.asm" |
|
|
116 |
.include "words/again.asm" |
|
|
117 |
.include "words/do.asm" |
|
|
118 |
.include "words/loop.asm" |
|
|
119 |
.include "words/plusloop.asm" |
|
|
120 |
|
|
|
121 |
.include "words/docreate.asm" |
|
|
122 |
.include "words/create.asm" |
|
|
123 |
.include "words/does.asm" |
|
|
124 |
.include "words/colon.asm" |
|
|
125 |
.include "words/colon-noname.asm" |
|
|
126 |
.include "words/semicolon.asm" |
|
|
127 |
.include "words/rightbracket.asm" |
|
|
128 |
.include "words/leftbracket.asm" |
|
|
129 |
.include "words/variable.asm" |
|
|
130 |
.include "words/constant.asm" |
|
|
131 |
.include "words/user.asm" |
|
|
132 |
.include "words/backslash.asm" |
|
|
133 |
.include "words/lparenthesis.asm" |
|
|
134 |
.include "words/recurse.asm" |
|
|
135 |
.include "words/immediate.asm" |
|
|
136 |
.include "words/compile.asm" |
|
|
137 |
|
|
|
138 |
.include "words/brackettick.asm" |
|
|
139 |
|
|
|
140 |
.include "words/decimal.asm" |
|
|
141 |
.include "words/hex.asm" |
|
|
142 |
.include "words/bl.asm" |
|
|
143 |
.include "words/edp.asm" |
|
|
144 |
.include "words/heap.asm" |
|
|
145 |
.include "words/turnkey.asm" |
|
|
146 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|
|
147 |
.include "words/starslashmod.asm" |
|
|
148 |
.include "words/slashmod.asm" |
|
|
149 |
.include "words/starslash.asm" |
|
|
150 |
.include "words/uslashmod.asm" |
|
|
151 |
.include "words/ustarslashmod.asm" |
|
|
152 |
|
|
|
153 |
.include "words/negate.asm" |
|
|
154 |
.include "words/slash.asm" |
|
|
155 |
.include "words/mod.asm" |
|
|
156 |
.include "words/abs.asm" |
|
|
157 |
.include "words/min.asm" |
|
|
158 |
.include "words/max.asm" |
|
|
159 |
;;;;;;;;;;;;;;;;;;;;;; |
|
|
160 |
.include "words/hld.asm" |
|
|
161 |
.include "words/hold.asm" |
|
|
162 |
.include "words/l_sharp.asm" ; <# |
|
|
163 |
.include "words/sharp.asm" |
|
|
164 |
.include "words/sharp_s.asm" |
|
|
165 |
.include "words/sharp_g.asm" ; #> |
|
|
166 |
.include "words/sign.asm" |
|
|
167 |
.include "words/dot.asm" |
|
|
168 |
.include "words/digit.asm" |
|
|
169 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|
|
170 |
.include "words/sliteral.asm" |
|
|
171 |
.include "words/scomma.asm" |
|
|
172 |
.include "words/itype.asm" |
|
|
173 |
.include "words/icount.asm" |
|
|
174 |
.include "words/cr.asm" |
|
|
175 |
.include "words/space.asm" |
|
|
176 |
.include "words/count.asm" |
|
|
177 |
.include "words/type.asm" |
|
|
178 |
.include "words/tick.asm" |
|
|
179 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|
|
180 |
.include "words/handler.asm" |
|
|
181 |
.include "words/catch.asm" |
|
|
182 |
.include "words/throw.asm" |
|
|
183 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|
|
184 |
.include "words/char-skip.asm" |
|
|
185 |
.include "words/accept.asm" |
|
|
186 |
.include "words/refill.asm" |
|
|
187 |
.include "words/char.asm" |
|
|
188 |
.include "words/number.asm" |
|
|
189 |
.include "words/parse.asm" |
|
|
190 |
.include "words/char-scan.asm" |
|
|
191 |
.include "words/source.asm" |
|
|
192 |
.include "words/slashstring.asm" |
|
|
193 |
|
|
|
194 |
.include "words/word.asm" |
|
|
195 |
|
|
|
196 |
.include "words/quit.asm" |
|
|
197 |
.include "words/pause.asm" |
|
|
198 |
.include "words/cold.asm" |
|
|
199 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|
|
200 |
.include "words/sp0.asm" |
|
|
201 |
.include "words/rp0.asm" |
|
|
202 |
.include "words/depth.asm" |
|
|
203 |
.include "words/interpret.asm" |
|
|
204 |
.include "words/ver.asm" |
|
|
205 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|
|
206 |
.include "words/noop.asm" |
|
|
207 |
.include "words/unused.asm" |
|
|
208 |
|
|
|
209 |
.include "words/value.asm" |
|
|
210 |
.include "words/to.asm" |
|
|
211 |
|
|
|
212 |
.include "words/edefer-fetch.asm" |
|
|
213 |
.include "words/edefer-store.asm" |
|
|
214 |
.include "words/rdefer-fetch.asm" |
|
|
215 |
.include "words/rdefer-store.asm" |
|
|
216 |
.include "words/udefer-fetch.asm" |
|
|
217 |
.include "words/udefer-store.asm" |
|
|
218 |
|
|
|
219 |
.include "words/do-defer.asm" |
|
|
220 |
.include "words/find.asm" |
|
|
221 |
.include "words/defer-store.asm" |
|
|
222 |
.include "words/defer-fetch.asm" |
|
|
223 |
</pre> |
|
|
224 |
|
|
|
225 |
<p> |
|
|
226 |
<input type=button onClick="history.back()" value="Back"> |
|
|
227 |
<input type=button onClick="history.forward()" value="Forward"> |
|
|
228 |
<a href="../WordList.en.html">Jump to Vocabulary</a> |
|
|
229 |
</p> |
|
|
230 |
|
|
|
231 |
</div> |
|
|
232 |
|
|
|
233 |
<!-- AUTOINCLUDE START "Page/Footer.en.ihtml" DO NOT REMOVE --> |
|
|
234 |
<!-- ============== FOOTER ============== --> |
|
|
235 |
<div class="Footer"> |
|
|
236 |
<script type="text/javascript"> |
|
|
237 |
<!-- |
|
|
238 |
SetRelativePath("../../../../"); |
|
|
239 |
DrawFooter(); |
|
|
240 |
// --> |
|
|
241 |
</script> |
|
|
242 |
<noscript> |
|
|
243 |
<p><b> JavaScript is required for including of the footer </b></p> |
|
|
244 |
</noscript> |
|
|
245 |
</div> |
|
|
246 |
<!-- AUTOINCLUDE END --> |
|
|
247 |
|
|
|
248 |
</body> |
|
|
249 |
</html> |