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_high.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_high.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 |
; this part of the dictionay has to fit into the nrww flash |
|
|
61 |
; section together with the forth inner interpreter |
|
|
62 |
|
|
|
63 |
.include "words/exit.asm" |
|
|
64 |
.include "words/execute.asm" |
|
|
65 |
.include "words/dobranch.asm" |
|
|
66 |
.include "words/docondbranch.asm" |
|
|
67 |
|
|
|
68 |
.include "words/estore.asm" |
|
|
69 |
.include "words/efetch.asm" |
|
|
70 |
|
|
|
71 |
.include "words/sleep.asm" |
|
|
72 |
.include "words/wdr.asm" |
|
|
73 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|
|
74 |
.include "words/doliteral.asm" |
|
|
75 |
.include "words/dovariable.asm" |
|
|
76 |
.include "words/doconstant.asm" |
|
|
77 |
.include "words/douser.asm" |
|
|
78 |
.include "words/fetch.asm" |
|
|
79 |
.include "words/store.asm" |
|
|
80 |
.include "words/cstore.asm" |
|
|
81 |
.include "words/cfetch.asm" |
|
|
82 |
;;;;;;;;;;;;;;;;;;;;;;;;; |
|
|
83 |
.include "words/dup.asm" |
|
|
84 |
.include "words/qdup.asm" |
|
|
85 |
.include "words/swap.asm" |
|
|
86 |
.include "words/over.asm" |
|
|
87 |
.include "words/drop.asm" |
|
|
88 |
.include "words/rot.asm" |
|
|
89 |
|
|
|
90 |
;;;;;;;;;;;;;;;;;;;;;;;;; |
|
|
91 |
.include "words/r_from.asm" |
|
|
92 |
.include "words/to_r.asm" |
|
|
93 |
.include "words/r_fetch.asm" |
|
|
94 |
|
|
|
95 |
;;;;;;;;;;;;;;;;;;;;;;;; |
|
|
96 |
.include "words/notequal.asm" |
|
|
97 |
.include "words/notequalzero.asm" |
|
|
98 |
.include "words/equal.asm" |
|
|
99 |
.include "words/equalzero.asm" |
|
|
100 |
.include "words/less.asm" |
|
|
101 |
.include "words/greater.asm" |
|
|
102 |
.include "words/lesszero.asm" |
|
|
103 |
.include "words/greaterzero.asm" |
|
|
104 |
.include "words/uless.asm" |
|
|
105 |
.include "words/ugreater.asm" |
|
|
106 |
.include "words/d-greater.asm" |
|
|
107 |
.include "words/d-less.asm" |
|
|
108 |
|
|
|
109 |
.include "words/log2.asm" |
|
|
110 |
.include "words/minus.asm" |
|
|
111 |
.include "words/plus.asm" |
|
|
112 |
.include "words/star.asm" |
|
|
113 |
.include "words/mstar.asm" |
|
|
114 |
.include "words/umslashmod.asm" |
|
|
115 |
|
|
|
116 |
.include "words/invert.asm" |
|
|
117 |
.include "words/2slash.asm" |
|
|
118 |
.include "words/2star.asm" |
|
|
119 |
.include "words/and.asm" |
|
|
120 |
.include "words/or.asm" |
|
|
121 |
.include "words/xor.asm" |
|
|
122 |
.include "words/not.asm" |
|
|
123 |
|
|
|
124 |
.include "words/1plus.asm" |
|
|
125 |
.include "words/1minus.asm" |
|
|
126 |
.include "words/lshift.asm" |
|
|
127 |
.include "words/rshift.asm" |
|
|
128 |
.include "words/plusstore.asm" |
|
|
129 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|
|
130 |
.include "words/rpfetch.asm" |
|
|
131 |
.include "words/rpstore.asm" |
|
|
132 |
.include "words/spfetch.asm" |
|
|
133 |
.include "words/spstore.asm" |
|
|
134 |
|
|
|
135 |
.include "words/dodo.asm" |
|
|
136 |
.include "words/doqdo.asm" |
|
|
137 |
.include "words/i.asm" |
|
|
138 |
.include "words/j.asm" |
|
|
139 |
.include "words/doloop.asm" |
|
|
140 |
.include "words/doplusloop.asm" |
|
|
141 |
.include "words/unloop.asm" |
|
|
142 |
|
|
|
143 |
;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|
|
144 |
.include "words/ifetch.asm" |
|
|
145 |
.include "words/istore.asm" |
|
|
146 |
;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|
|
147 |
|
|
|
148 |
.include "words/cmove_g.asm" |
|
|
149 |
.include "words/byteswap.asm" |
|
|
150 |
.include "words/1ms.asm" |
|
|
151 |
.include "words/zero.asm" |
|
|
152 |
.include "words/up.asm" |
|
|
153 |
|
|
|
154 |
.include "words/s_to_d.asm" |
|
|
155 |
.include "words/d_to_s.asm" |
|
|
156 |
.include "words/d-2slash.asm" |
|
|
157 |
</pre> |
|
|
158 |
|
|
|
159 |
<p> |
|
|
160 |
<input type=button onClick="history.back()" value="Back"> |
|
|
161 |
<input type=button onClick="history.forward()" value="Forward"> |
|
|
162 |
<a href="../WordList.en.html">Jump to Vocabulary</a> |
|
|
163 |
</p> |
|
|
164 |
|
|
|
165 |
</div> |
|
|
166 |
|
|
|
167 |
<!-- AUTOINCLUDE START "Page/Footer.en.ihtml" DO NOT REMOVE --> |
|
|
168 |
<!-- ============== FOOTER ============== --> |
|
|
169 |
<div class="Footer"> |
|
|
170 |
<script type="text/javascript"> |
|
|
171 |
<!-- |
|
|
172 |
SetRelativePath("../../../../"); |
|
|
173 |
DrawFooter(); |
|
|
174 |
// --> |
|
|
175 |
</script> |
|
|
176 |
<noscript> |
|
|
177 |
<p><b> JavaScript is required for including of the footer </b></p> |
|
|
178 |
</noscript> |
|
|
179 |
</div> |
|
|
180 |
<!-- AUTOINCLUDE END --> |
|
|
181 |
|
|
|
182 |
</body> |
|
|
183 |
</html> |