-
Notifications
You must be signed in to change notification settings - Fork 113
/
nucleus.fth
397 lines (336 loc) · 3.94 KB
/
nucleus.fth
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
\ Nucleus for x86. Copyright 2014-2016 Lars Brinkhoff.
include targets/x86/next.fth
host also meta also assembler
\ Check eax for error. Store ( result error ) at stack offset u.
: error-check, ( u -- )
>r
ebx ebx xor,
eax eax test,
0<, if,
eax ebx xchg,
then,
ebx r@ S )# mov,
eax r> 4 + S )# mov, ;
hex
target
exe-code
code sp@
S push,
next,
end-code
code sp!
S pop,
next,
end-code
code rp@
R push,
next,
end-code
code rp!
R pop,
next,
end-code
code exit
I rpop,
next,
end-code
code docol
I rpush,
body-offset W )# I lea,
next,
end-code
code dovar
body-offset W )# W lea,
W push,
next,
end-code
code docon
body-offset W )# W mov,
W push,
next,
end-code
code dodef
body-offset W )# W mov,
execute,
next,
end-code
code dodoes
body-offset W )# W lea,
I rpush,
S ) I mov,
W S ) mov,
3 # I add,
next,
end-code
code 0branch
W fetch,
ecx pop,
ecx ecx test,
W I cmove,
next,
end-code
code (literal)
W fetch,
W push,
next,
end-code
code (sliteral)
W fetch,
I push,
W push,
W I add,
3 # I add,
-4 # I and,
next,
end-code
code !
ecx pop,
W pop,
W ecx ) mov,
next,
end-code
code @
S ) W mov,
W ) W mov,
W S ) mov,
next,
end-code
code +
W pop,
W S ) add,
next,
end-code
code +!
W pop,
ecx pop,
ecx W ) add,
next,
end-code
code >r
W pop,
W rpush,
next,
end-code
code r>
W rpop,
W push,
next,
end-code
code 2>r
W pop,
8 # R sub,
W R ) mov,
W pop,
W 4 R )# mov,
next,
end-code
code (loop)
1 # W mov,
R ) W add,
4 R )# W cmp,
ecx ecx sbb,
ecx not,
ecx push,
W R ) mov,
next,
end-code
code 2rdrop
8 # R add,
next,
end-code
code nand
W pop,
S ) W and,
W not,
W S ) mov,
next,
end-code
code c!
W pop,
ecx pop,
cl W ) mov,
next,
end-code
code c@
S ) W mov,
W ) W movzx,
W S ) mov,
next,
end-code
code branch
I ) I mov,
next,
end-code
code execute
W pop,
execute,
end-code
code r@
R ) W mov,
W push,
next,
end-code
code 0=
1 # S ) cmp,
W W sbb,
W S ) mov,
next,
end-code
code 0<>
S ) W mov,
W neg,
W W sbb,
W S ) mov,
next,
end-code
code 0<
S ) W mov,
1F # W sar,
W S ) mov,
next,
end-code
code drop
4 # S add,
next,
end-code
code dup
S ) W mov,
W push,
next,
end-code
code ?dup
S ) W mov,
W W test,
0<>, if,
W push,
then,
next,
end-code
code nip
W pop,
W S ) mov,
next,
end-code
code swap
S ) W mov,
4 S )# ecx mov,
ecx S ) mov,
W 4 S )# mov,
next,
end-code
code over
4 S )# W mov,
W push,
next,
end-code
code tuck
S ) W mov,
4 S )# ecx mov,
ecx S ) mov,
W 4 S )# mov,
W push,
next,
end-code
\ code rot
\ code -rot
code 2drop
8 # S add,
next,
end-code
code 2dup
4 S )# W mov,
W push,
4 S )# W mov,
W push,
next,
end-code
\ code 2nip
\ code 2swap
\ code 2over
\ code 2tuck
\ code 2rot
code negate
S ) neg,
next,
end-code
code -
W pop,
W S ) sub,
next,
end-code
code =
W pop,
S ) W sub,
1 # W sub,
W W sbb,
W S ) mov,
next,
end-code
code <>
W pop,
S ) W sub,
1 # W sub,
W W sbb,
W not,
W S ) mov,
next,
end-code
code 1+
1 # S ) add,
next,
end-code
code 1-
-1 # S ) add,
next,
end-code
code cell+
4 # S ) add,
next,
end-code
code cells
S ) W mov,
2 # W shl,
W S ) mov,
next,
end-code
\ code >
\ code <
\ code <=
\ code >=
\ code abs
\ code max
\ code min
\ code *
\ code /
\ code mod
code um/mod
ebx pop,
eax push,
4 esp )# edx mov,
8 esp )# eax mov,
ebx div,
eax 4 esp )# mov,
edx 8 esp )# mov,
eax pop,
next,
end-code
code invert
S ) not,
next,
end-code
code or
W pop,
W S ) or,
next,
end-code
code xor
W pop,
W S ) xor,
next,
end-code
code and
W pop,
W S ) and,
next,
end-code
decimal