-
Notifications
You must be signed in to change notification settings - Fork 0
/
accumulator.yml
549 lines (549 loc) · 11.3 KB
/
accumulator.yml
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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
opcode_length: 8
opcode_offset: 0
text_byte_length: 8
data_byte_length: 8
text_address_size: 16
data_address_size: 16
register_groups:
ACC:
length: 0
registers:
- ACC
IR1:
length: 0
registers:
- IR1
IR2:
length: 0
registers:
- IR2
flag:
length: 0
registers:
- flag
commands:
- mnemonic: halt
opcode: !!int 0b00000000
- mnemonic: load
opcode: !!int 0b00000001
arguments:
- type: register
group: ACC
- type: register_address
group: ACC
- mnemonic: load
opcode: !!int 0b10010000
arguments:
- type: register
group: ACC
- type: immediate
bits: 16
- mnemonic: loadf
opcode: !!int 0b00000010
arguments:
- type: register
group: ACC
- type: register
group: flag
- mnemonic: load
opcode: !!int 0b01000001
arguments:
- type: register
group: ACC
- type: register_address
group: IR1
- mnemonic: load
opcode: !!int 0b01000010
arguments:
- type: register
group: ACC
- type: register_address
group: IR2
- mnemonic: mov
opcode: !!int 0b00011111
arguments:
- type: register
group: ACC
- type: register
group: IR1
- mnemonic: mov
opcode: !!int 0b00100000
arguments:
- type: register
group: ACC
- type: register
group: IR2
- mnemonic: store
opcode: !!int 0b00000011
arguments:
- type: register_address
group: IR1
- type: register
group: ACC
- mnemonic: store
opcode: !!int 0b10010001
arguments:
- type: register_address
group: IR1
- type: immediate
bits: 16
- mnemonic: store
opcode: !!int 0b00100011
arguments:
- type: register_address
group: IR2
- type: register
group: ACC
- mnemonic: store
opcode: !!int 0b11110010
arguments:
- type: register_address
group: IR2
- type: immediate
bits: 16
- mnemonic: storef
opcode: !!int 0b00000100
arguments:
- type: register
group: flag
- type: register
group: ACC
- mnemonic: mov
opcode: !!int 0b00100001
arguments:
- type: register
group: IR1
- type: register
group: ACC
- mnemonic: mov
opcode: !!int 0b00100010
arguments:
- type: register
group: IR2
- type: register
group: ACC
- mnemonic: mov
opcode: !!int 0b00111111
arguments:
- type: register
group: IR2
- type: register
group: IR1
- mnemonic: mov
opcode: !!int 0b01000000
arguments:
- type: register
group: IR1
- type: register
group: IR2
- mnemonic: mov
opcode: !!int 0b10000000
arguments:
- type: register
group: ACC
- type: immediate
bits: 16
- mnemonic: push
opcode: !!int 0b00000101
arguments:
- type: register
group: ACC
- mnemonic: pop
opcode: !!int 0b00000111
arguments:
- type: register
group: ACC
- mnemonic: pushf
opcode: !!int 0b00000110
arguments:
- type: register
group: flag
- mnemonic: popf
opcode: !!int 0b00001000
arguments:
- type: register
group: flag
- mnemonic: push
opcode: !!int 0b00111101
arguments:
- type: register_address
group: IR1
- mnemonic: pop
opcode: !!int 0b00001001
arguments:
- type: register_address
group: IR1
- mnemonic: push
opcode: !!int 0b00100100
arguments:
- type: register_address
group: IR2
- mnemonic: pop
opcode: !!int 0b00100101
arguments:
- type: register_address
group: IR2
- mnemonic: add
opcode: !!int 0b00001010
arguments:
- type: register
group: ACC
- type: data_address
bits: 16
- mnemonic: add
opcode: !!int 0b00100110
arguments:
- type: register
group: ACC
- type: register_address
group: IR1
- mnemonic: add
opcode: !!int 0b00100111
arguments:
- type: register
group: ACC
- type: register_address
group: IR2
- mnemonic: sub
opcode: !!int 0b00001011
arguments:
- type: register
group: ACC
- type: data_address
bits: 16
- mnemonic: sub
opcode: !!int 0b00101000
arguments:
- type: register
group: ACC
- type: register_address
group: IR1
- mnemonic: sub
opcode: !!int 0b00101001
arguments:
- type: register
group: ACC
- type: register_address
group: IR2
- mnemonic: mul
opcode: !!int 0b00001110
arguments:
- type: register
group: ACC
- type: data_address
bits: 16
- mnemonic: mul
opcode: !!int 0b00101010
arguments:
- type: register
group: ACC
- type: register_address
group: IR1
- mnemonic: mul
opcode: !!int 0b00101011
arguments:
- type: register
group: ACC
- type: register_address
group: IR2
- mnemonic: div
opcode: !!int 0b00001111
arguments:
- type: register
group: ACC
- type: data_address
bits: 16
- mnemonic: div
opcode: !!int 0b00101100
arguments:
- type: register
group: ACC
- type: register_address
group: IR1
- mnemonic: div
opcode: !!int 0b00101101
arguments:
- type: register
group: ACC
- type: register_address
group: IR2
- mnemonic: inc
opcode: !!int 0b00001100
arguments:
- type: register
group: ACC
- mnemonic: inc
opcode: !!int 0b00101110
arguments:
- type: register
group: IR1
- mnemonic: inc
opcode: !!int 0b00101111
arguments:
- type: register
group: IR2
- mnemonic: dec
opcode: !!int 0b00001101
arguments:
- type: register
group: ACC
- mnemonic: dec
opcode: !!int 0b00110000
arguments:
- type: register
group: IR1
- mnemonic: dec
opcode: !!int 0b00110001
arguments:
- type: register
group: IR2
- mnemonic: and
opcode: !!int 0b00010000
arguments:
- type: register
group: ACC
- type: data_address
bits: 16
- mnemonic: and
opcode: !!int 0b00110010
arguments:
- type: register
group: ACC
- type: register_address
group: IR1
- mnemonic: and
opcode: !!int 0b00110011
arguments:
- type: register
group: ACC
- type: register_address
group: IR2
- mnemonic: or
opcode: !!int 0b00010001
arguments:
- type: register
group: ACC
- type: data_address
bits: 16
- mnemonic: or
opcode: !!int 0b00110100
arguments:
- type: register
group: ACC
- type: register_address
group: IR1
- mnemonic: or
opcode: !!int 0b00110101
arguments:
- type: register
group: ACC
- type: register_address
group: IR2
- mnemonic: xor
opcode: !!int 0b00010010
arguments:
- type: register
group: ACC
- type: data_address
bits: 16
- mnemonic: xor
opcode: !!int 0b00110110
arguments:
- type: register
group: ACC
- type: register_address
group: IR1
- mnemonic: xor
opcode: !!int 0b00110111
arguments:
- type: register
group: ACC
- type: register_address
group: IR2
- mnemonic: not
opcode: !!int 0b00010011
arguments:
- type: register
group: ACC
- type: data_address
bits: 16
- mnemonic: not
opcode: !!int 0b00111000
arguments:
- type: register
group: ACC
- type: register_address
group: IR1
- mnemonic: not
opcode: !!int 0b00111110
arguments:
- type: register
group: ACC
- type: register_address
group: IR2
- mnemonic: lsh
opcode: !!int 0b10000001
arguments:
- type: register
group: ACC
- type: immediate
bits: 16
- mnemonic: rsh
opcode: !!int 0b10000010
arguments:
- type: register
group: ACC
- type: immediate
bits: 16
- mnemonic: call
opcode: !!int 0b10000100
arguments:
- type: text_address
bits: 16
- mnemonic: call
opcode: !!int 0b00010100
arguments:
- type: register
group: ACC
- mnemonic: ret
opcode: !!int 0b00010101
- mnemonic: cmp
opcode: !!int 0b00010110
arguments:
- type: register
group: ACC
- type: data_address
bits: 16
- mnemonic: cmp
opcode: !!int 0b10000101
arguments:
- type: register
group: ACC
- type: immediate
bits: 16
- mnemonic: cmp
opcode: !!int 0b00111001
arguments:
- type: register
group: ACC
- type: register_address
group: IR1
- mnemonic: cmp
opcode: !!int 0b00111010
arguments:
- type: register
group: ACC
- type: register_address
group: IR2
- mnemonic: test
opcode: !!int 0b10000110
arguments:
- type: register
group: ACC
- type: immediate
bits: 16
- mnemonic: test
opcode: !!int 0b10001111
arguments:
- type: register
group: ACC
- type: data_address
bits: 16
- mnemonic: test
opcode: !!int 0b00111011
arguments:
- type: register
group: ACC
- type: register_address
group: IR1
- mnemonic: test
opcode: !!int 0b00111100
arguments:
- type: register
group: ACC
- type: register_address
group: IR2
- mnemonic: jmp
opcode: !!int 0b10000111
arguments:
- type: text_address
bits: 16
- mnemonic: jmp
opcode: !!int 0b00010111
arguments:
- type: register
group: ACC
- mnemonic: je
opcode: !!int 0b10001000
arguments:
- type: text_address
bits: 16
- mnemonic: je
opcode: !!int 0b00011000
arguments:
- type: register
group: ACC
- mnemonic: jne
opcode: !!int 0b10001001
arguments:
- type: text_address
bits: 16
- mnemonic: jne
opcode: !!int 0b00011001
arguments:
- type: register
group: ACC
- mnemonic: jg
opcode: !!int 0b10001010
arguments:
- type: text_address
bits: 16
- mnemonic: jg
opcode: !!int 0b00011010
arguments:
- type: register
group: ACC
- mnemonic: jge
opcode: !!int 0b10001011
arguments:
- type: text_address
bits: 16
- mnemonic: jge
opcode: !!int 0b00011011
arguments:
- type: register
group: ACC
- mnemonic: jl
opcode: !!int 0b10001100
arguments:
- type: text_address
bits: 16
- mnemonic: jl
opcode: !!int 0b00011100
arguments:
- type: register
group: ACC
- mnemonic: jle
opcode: !!int 0b10001101
arguments:
- type: text_address
bits: 16
- mnemonic: jle
opcode: !!int 0b00011101
arguments:
- type: register
group: ACC
- mnemonic: in
opcode: !!int 0b10001110
arguments:
- type: register
group: ACC
- type: immediate # port
bits: 16
- mnemonic: out
opcode: !!int 0b10011000
arguments:
- type: immediate
bits: 16
- type: register
group: ACC