about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--subx/Readme.md11
1 files changed, 7 insertions, 4 deletions
diff --git a/subx/Readme.md b/subx/Readme.md
index d898cde9..dddccb91 100644
--- a/subx/Readme.md
+++ b/subx/Readme.md
@@ -2,10 +2,13 @@
 
 Bytecode interpreter for a subset of the 32-bit x86 ISA.
 
-* only instructions operating on the 32-bit E*X registers
-* assuming a flat address space, completely ignoring segment registers
-* ignoring the carry flag; arithmetic operations always operate on signed numbers
-  (while bitwise operations always operate on unsigned numbers)
+* Only instructions that operate on the 32-bit E*X registers.
+* Only instructions that assume a flat address space; no instructions that use
+  segment registers.
+* No instructions that check the carry or parity flags; arithmetic operations
+  always operate on signed numbers (while bitwise operations always operate on
+  unsigned numbers)
+* Only relative jump instructions (with 8-bit or 16-bit offsets).
 
 Basically a minimum basis set that a compiler for Mu can target. This isn't
 meant to run arbitrary binaries, just those generated by our compiler,
thor Kartik K. Agaram <vc@akkartik.com> 2016-04-24 11:54:30 -0700 committer Kartik K. Agaram <vc@akkartik.com> 2016-04-24 11:54:30 -0700 2864 - replace all address:shared with just address' href='/akkartik/mu/commit/034new_text.cc?h=hlt&id=b0bf5321de2ba32f3b92c2faf6b7b68a06b6b432'>b0bf5321 ^
2c91ac0c ^
b0bf5321 ^
78c50205 ^
b0bf5321 ^
23d3a022 ^
78c50205 ^
c442a5ad ^
b0bf5321 ^



78c50205 ^
b0bf5321 ^


7fd01071 ^
23d3a022 ^
acce384b ^
23d3a022 ^
c442a5ad ^
ad2604e8 ^

b0bf5321 ^

6c96a437 ^
b0bf5321 ^


c442a5ad ^
ad2604e8 ^
b0bf5321 ^
ad2604e8 ^
b0bf5321 ^
9a81d746 ^
b0bf5321 ^


4b424bb2 ^

4a943d4e ^










4b424bb2 ^
23d3a022 ^
b0bf5321 ^
4a943d4e ^










b0bf5321 ^
e41e8e09 ^
78c50205 ^
23d3a022 ^
b0bf5321 ^

17401c38 ^

23d3a022 ^
17401c38 ^

4a943d4e ^











b0bf5321 ^
4a943d4e ^










b0bf5321 ^
4a943d4e ^










d9630e06 ^

78c50205 ^
d9630e06 ^

23d3a022 ^
4a943d4e ^













b0bf5321 ^














78c50205 ^
b0bf5321 ^
23d3a022 ^
b56c564c ^
23d3a022 ^
b56c564c ^


b0bf5321 ^
b56c564c ^
b0bf5321 ^
b0bf5321 ^

aa3d29a5 ^
65151923 ^



4a943d4e ^























23d3a022 ^
65151923 ^






2b250717 ^
65151923 ^

23d3a022 ^

65151923 ^









23d3a022 ^
65151923 ^


23d3a022 ^
909adb27 ^
65151923 ^



65151923 ^
aa3d29a5 ^



























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