-
Notifications
You must be signed in to change notification settings - Fork 13
/
mips.yaml
3113 lines (2856 loc) · 62.4 KB
/
mips.yaml
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
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
instructions:
# R-Type Instructions
# SPECIAL
- name: SLL
desc_short: Shifts the value in $Rt left by Sa logically, storing the result in $Rd
desc_long: >
insert long description here if you so please
compile:
format: [Rd, Rt, Shamt]
runtime:
type: R
funct: 0x00
reads: [Rt]
- name: SRL
desc_short: Shifts the value in $Rt right by Sa logically, storing the result in $Rd
compile:
format: [Rd, Rt, Shamt]
runtime:
type: R
funct: 0x02
rs: 0x00
reads: [Rt]
- name: ROTR
desc_short: Rotates the value in $Rt right by Sa logically, storing the result in $Rd
compile:
format: [Rd, Rt, Shamt]
runtime:
type: R
funct: 0x02
rs: 0x01
reads: [Rt]
- name: SRA
desc_short: Shifts the value in $Rt right by Sa arithmetically, storing the result in $Rd
compile:
format: [Rd, Rt, Shamt]
runtime:
type: R
funct: 0x03
reads: [Rt]
- name: SLLV
desc_short: Shifts the value in $Rt left by the value in $Rs logically, storing the result in $Rd
compile:
format: [Rd, Rt, Rs]
runtime:
type: R
funct: 0x04
reads: [Rt, Rs]
- name: SRLV
desc_short: Shifts the value in $Rt right by the value in $Rs logically, storing the result in $Rd
compile:
format: [Rd, Rt, Rs]
runtime:
type: R
funct: 0x06
shamt: 0x00
reads: [Rt, Rs]
- name: ROTRV
desc_short: Rotates the value in $Rt right by the value in $Rs logically, storing the result in $Rd
compile:
format: [Rd, Rt, Rs]
runtime:
type: R
funct: 0x06
shamt: 0x01
reads: [Rt, Rs]
- name: SRAV
desc_short: Shifts the value in $Rt right by the value in $Rs arithmetically, storing the result in $Rd
compile:
format: [Rd, Rt, Rs]
runtime:
type: R
funct: 0x07
reads: [Rt, Rs]
- name: JR
desc_short: Jumps to the address stored in the register $Rs
compile:
format: [Rs]
runtime:
type: R
funct: 0x08
reads: [Rs]
- name: JALR
desc_short: Jump-and-links to the address stored in the register $Rs, storing the return address in $Rd ($31 if not specified)
compile:
format: [Rd, Rs]
runtime:
type: R
funct: 0x09
reads: [Rs]
- name: MOVZ
desc_short: Move Conditional on Zero
compile:
format: [Rd, Rs, Rt]
runtime:
type: R
funct: 0x0A
reads: [Rs, Rt]
- name: MOVN
desc_short: Move Conditional on Not Zero
compile:
format: [Rd, Rs, Rt]
runtime:
type: R
funct: 0x0B
reads: [Rs, Rt]
- name: SYSCALL
desc_short: Causes a system-call interrupt
compile:
format: []
runtime:
type: R
funct: 0x0C
reads: []
- name: BREAK
desc_short: Causes a break interrupt
compile:
format: []
runtime:
type: R
funct: 0x0D
reads: []
- name: MFHI
desc_short: Copies the value from the HI register to $Rd
compile:
format: [Rd]
runtime:
type: R
funct: 0x10
shamt: 0x00
reads: []
- name: CLZ
desc_short: Count leading zeroes of $Rs, store in $Rd
compile:
format: [Rd, Rs]
runtime:
type: R
funct: 0x10
shamt: 0x01
reads: [Rs]
- name: MTHI
desc_short: Copies the value from $Rs to the HI register
compile:
format: [Rs]
runtime:
type: R
funct: 0x11
shamt: 0x00
reads: [Rs]
- name: CLO
desc_short: Count leading ones of $Rs, store in $Rd
compile:
format: [Rd, Rs]
runtime:
type: R
funct: 0x11
shamt: 0x01
reads: [Rs]
- name: MFLO
desc_short: Copies the value from the LO register to $Rd
compile:
format: [Rd]
runtime:
type: R
funct: 0x12
reads: []
- name: MTLO
desc_short: Copies the value from $Rs to the LO register
compile:
format: [Rs]
runtime:
type: R
funct: 0x13
reads: [Rs]
- name: MULT
desc_short: Multiplies the values in $Rs and $Rt, storing the result in the HI and LO registers
compile:
format: [Rs, Rt]
runtime:
type: R
funct: 0x18
reads: [Rs, Rt]
- name: MULTU
desc_short: Multiplies the values in $Rs and $Rt, storing the result in the HI and LO registers, unsigned
compile:
format: [Rs, Rt]
runtime:
type: R
funct: 0x19
reads: [Rs, Rt]
- name: DIV
desc_short: Divides the values in $Rs and $Rt, storing the $Rs / $Rt in HI, and $Rs % $Rt in LO
compile:
format: [Rs, Rt]
runtime:
type: R
funct: 0x1A
reads: [Rs, Rt]
- name: DIVU
desc_short: Divides the values in $Rs and $Rt, storing the $Rs / $Rt in HI, and $Rs % $Rt in LO, unsigned
compile:
format: [Rs, Rt]
runtime:
type: R
funct: 0x1B
reads: [Rs, Rt]
- name: TGE
desc_short: Trap if Greater or Equal
compile:
format: [Rs, Rt]
runtime:
type: R
funct: 0x30
reads: [Rs, Rt]
- name: TGEU
desc_short: Trap if Greater or Equal Unsigned
compile:
format: [Rs, Rt]
runtime:
type: R
funct: 0x31
reads: [Rs, Rt]
- name: TLT
desc_short: Trap if Less Than
compile:
format: [Rs, Rt]
runtime:
type: R
funct: 0x32
reads: [Rs, Rt]
- name: TLTU
desc_short: Trap if Less Than Unsigned
compile:
format: [Rs, Rt]
runtime:
type: R
funct: 0x33
reads: [Rs, Rt]
- name: TEQ
desc_short: Trap if Equal
compile:
format: [Rs, Rt]
runtime:
type: R
funct: 0x34
reads: [Rs, Rt]
- name: TNE
desc_short: Trap if Not Equal
compile:
format: [Rs, Rt]
runtime:
type: R
funct: 0x36
reads: [Rs, Rt]
# SPECIAL2
- name: MADD
desc_short: todo
compile:
format: [Rs, Rt]
runtime:
type: R
opcode: 0x1C
funct: 0x00
reads: [Rs, Rt]
- name: MADDU
desc_short: todo
compile:
format: [Rs, Rt]
runtime:
type: R
opcode: 0x1C
funct: 0x01
reads: [Rs, Rt]
- name: MUL
desc_short: Multiplies the values in $Rs and $Rt, storing the result in $Rd
compile:
format: [Rd, Rs, Rt]
runtime:
type: R
opcode: 0x1C
funct: 0x02
reads: [Rs, Rt]
- name: MSUB
desc_short: todo
compile:
format: [Rs, Rt]
runtime:
type: R
opcode: 0x1C
funct: 0x04
reads: [Rs, Rt]
- name: MSUBU
desc_short: todo
compile:
format: [Rs, Rt]
runtime:
type: R
opcode: 0x1C
funct: 0x05
reads: [Rs, Rt]
# SPECIAL3
- name: WSBH
desc_short: Word Swap Bytes Within Halfwords
compile:
format: [Rd, Rt]
runtime:
type: R
opcode: 0x1F
funct: 0x20
rs: 0x00
shamt: 0x02
reads: [Rt]
- name: SEB
desc_short: Sign-Extend Byte
compile:
format: [Rd, Rt]
runtime:
type: R
opcode: 0x1F
funct: 0x20
rs: 0x00
shamt: 0x10
reads: [Rt]
- name: SEH
desc_short: Sign-Extend Halfword
compile:
format: [Rd, Rt]
runtime:
type: R
opcode: 0x1F
funct: 0x20
rs: 0x00
shamt: 0x18
reads: [Rt]
- name: ADD
desc_short: todo
compile:
format: [Rd, Rs, Rt]
runtime:
type: R
funct: 0x20
reads: [Rs, Rt]
- name: ADDU
desc_short: todo
compile:
format: [Rd, Rs, Rt]
runtime:
type: R
funct: 0x21
reads: [Rs, Rt]
- name: SUB
desc_short: todo
compile:
format: [Rd, Rs, Rt]
runtime:
type: R
funct: 0x22
reads: [Rs, Rt]
- name: SUBU
desc_short: todo
compile:
format: [Rd, Rs, Rt]
runtime:
type: R
funct: 0x23
reads: [Rs, Rt]
- name: AND
desc_short: todo
compile:
format: [Rd, Rs, Rt]
runtime:
type: R
funct: 0x24
reads: [Rs, Rt]
- name: OR
desc_short: todo
compile:
format: [Rd, Rs, Rt]
runtime:
type: R
funct: 0x25
reads: [Rs, Rt]
- name: XOR
desc_short: todo
compile:
format: [Rd, Rs, Rt]
runtime:
type: R
funct: 0x26
reads: [Rs, Rt]
- name: NOR
desc_short: todo
compile:
format: [Rd, Rs, Rt]
runtime:
type: R
funct: 0x27
reads: [Rs, Rt]
- name: SLT
desc_short: Set $Rd to 1 if $Rs < $Rt, otherwise set $Rd to 0, unsigned
compile:
format: [Rd, Rs, Rt]
runtime:
type: R
funct: 0x2A
reads: [Rs, Rt]
- name: SLTU
desc_short: Set $Rd to 1 if $Rs < $Rt, otherwise set $Rd to 0, unsigned
compile:
format: [Rd, Rs, Rt]
runtime:
type: R
funct: 0x2B
reads: [Rs, Rt]
# I-Type instructions
- name: BLTZ
desc_short: Branch to the immediate address if the value in $Rs < 0
compile:
format: [Rs, I16]
relative_label: true
runtime:
type: I
opcode: 0x01
rt: 0x00
reads: [Rs]
- name: BGEZ
desc_short: Branch to the immediate address if the value in $Rs >= 0
compile:
format: [Rs, I16]
relative_label: true
runtime:
type: I
opcode: 0x01
rt: 0x01
reads: [Rs]
- name: TGEI
desc_short: Trap if Greater or Equal Immediate
compile:
format: [Rs, I16]
runtime:
type: I
opcode: 0x01
rt: 0x08
reads: [Rs]
- name: TGEIU
desc_short: Trap if Greater or Equal Immediate Unsigned
compile:
format: [Rs, I16]
runtime:
type: I
opcode: 0x01
rt: 0x09
reads: [Rs]
- name: TLTI
desc_short: Trap if Less Than Immediate
compile:
format: [Rs, I16]
runtime:
type: I
opcode: 0x01
rt: 0x0A
reads: [Rs]
- name: TLTIU
desc_short: Trap if Less Than Immediate Unsigned
compile:
format: [Rs, I16]
runtime:
type: I
opcode: 0x01
rt: 0x0B
reads: [Rs]
- name: TEQI
desc_short: Trap if Equal Immediate
compile:
format: [Rs, I16]
runtime:
type: I
opcode: 0x01
rt: 0x0C
reads: [Rs]
- name: TNEI
desc_short: Trap if Not Equal Immediate
compile:
format: [Rs, I16]
runtime:
type: I
opcode: 0x01
rt: 0x0E
reads: [Rs]
- name: BLTZAL
desc_short: Branch-and-link to the immediate address if the value in $Rs < 0
compile:
format: [Rs, I16]
relative_label: true
runtime:
type: I
opcode: 0x01
rt: 0x10
reads: [Rs]
- name: BGEZAL
desc_short: Branch-and-link to the immediate address if the value in $Rs >= 0
compile:
format: [Rs, I16]
relative_label: true
runtime:
type: I
opcode: 0x01
rt: 0x11
reads: [Rs]
- name: BEQ
desc_short: Branch to the immediate address if the values in $Rs == $Rt
compile:
format: [Rs, Rt, I16]
relative_label: true
runtime:
type: I
opcode: 0x04
reads: [Rs, Rt]
- name: BNE
desc_short: Branch to the immediate address if the values in $Rs != $Rt
compile:
format: [Rs, Rt, I16]
relative_label: true
runtime:
type: I
opcode: 0x05
reads: [Rs, Rt]
- name: BLEZ
desc_short: Branch to the immediate address if the value in $Rs <= 0
compile:
format: [Rs, I16]
relative_label: true
runtime:
type: I
opcode: 0x06
reads: [Rs]
- name: BGTZ
desc_short: Branch to the immediate address if the value in $Rs > 0
compile:
format: [Rs, I16]
relative_label: true
runtime:
type: I
opcode: 0x07
reads: [Rs]
- name: ADDI
desc_short: Adds an immediate value to the value in $Rs, stores result in $Rt
compile:
format: [Rt, Rs, I16]
runtime:
type: I
opcode: 0x08
reads: [Rs]
- name: ADDIU
desc_short: Adds an immediate value to the value in $Rs, stores result in $Rt, unsigned
compile:
format: [Rt, Rs, I16]
runtime:
type: I
opcode: 0x09
reads: [Rs]
- name: SLTI
desc_short: Sets $Rt to 1 if the value in $Rs is less than the immediate value, otherwise sets $Rt to 0
compile:
format: [Rt, Rs, I16]
runtime:
type: I
opcode: 0x0A
reads: [Rs]
- name: SLTIU
desc_short: Sets $Rt to 1 if the value in $Rs is less than the immediate value, otherwise sets $Rt to 0, unsigned
compile:
format: [Rt, Rs, I16]
runtime:
type: I
opcode: 0x0B
reads: [Rs]
- name: ANDI
desc_short: Bitwise and of the value in $Rs and the immediate value, stores the result in $Rt
compile:
format: [Rt, Rs, U16]
runtime:
type: I
opcode: 0x0C
reads: [Rs]
- name: ORI
desc_short: Bitwise or of the value in $Rs and the immediate value, stores the result in $Rt
compile:
format: [Rt, Rs, U16]
runtime:
type: I
opcode: 0x0D
reads: [Rs]
- name: XORI
desc_short: Bitwise xor of the value in $Rs and the immediate value, stores the result in $Rt
compile:
format: [Rt, Rs, U16]
runtime:
type: I
opcode: 0x0E
reads: [Rs]
- name: LUI
desc_short: Load the immediate value into the upper 16 bits of $Rt
compile:
format: [Rt, U16]
runtime:
type: I
opcode: 0x0F
reads: []
- name: LB
desc_short: Load one byte at the immediate address + $Rs into $Rt
compile:
format: [Rt, OffRs]
runtime:
type: I
opcode: 0x20
reads: [OffRs]
- name: LH
desc_short: Load two bytes at the immediate address + $Rs into $Rt
compile:
format: [Rt, OffRs]
runtime:
type: I
opcode: 0x21
reads: [OffRs]
- name: LWL
desc_short: Load Word Left
compile:
format: [Rt, OffRs]
runtime:
type: I
opcode: 0x22
reads: [OffRs]
- name: LW
desc_short: Load four bytes at the immediate address + $Rs into $Rt
compile:
format: [Rt, OffRs]
runtime:
type: I
opcode: 0x23
reads: [OffRs]
- name: LBU
desc_short: Load one byte at the immediate address + $Rs into $Rt, don't sign extend
compile:
format: [Rt, OffRs]
runtime:
type: I
opcode: 0x24
reads: [OffRs]
- name: LHU
desc_short: Load two bytes at the immediate address + $Rs into $Rt, don't sign extend
compile:
format: [Rt, OffRs]
runtime:
type: I
opcode: 0x25
reads: [OffRs]
- name: LWR
desc_short: Load Word Right
compile:
format: [Rt, OffRs]
runtime:
type: I
opcode: 0x26
reads: [OffRs]
- name: SB
desc_short: Store one byte from $Rt into the immediate address + $Rs
compile:
format: [Rt, OffRs]
runtime:
type: I
opcode: 0x28
reads: [Rt]
- name: SH
desc_short: Store two bytes from $Rt into the immediate address + $Rs
compile:
format: [Rt, OffRs]
runtime:
type: I
opcode: 0x29
reads: [Rt]
- name: SW
desc_short: Store four bytes from $Rt into the immediate address + $Rs
compile:
format: [Rt, OffRs]
runtime:
type: I
opcode: 0x2B
reads: [Rt]
# J-Type Instructions
- name: J
desc_short: Jump to the immediate address
compile:
format: [J]
runtime:
type: J
opcode: 0x02
reads: []
- name: JAL
desc_short: Jump-and-link to the immediate address
compile:
format: [J]
runtime:
type: J
opcode: 0x03
reads: []
pseudoinstructions:
# R-Type Instructions
# SPECIAL
- name: SLL
compile:
format: [Rd, Rt, Shamt]
expand:
- inst: SLL
data: [$Rd, $Rt, $Shamt]
only_derive: true
derives:
- DefaultValue:
value: Rt
default: $Rd
- Imm2Reg:
register: Rt
imm_types: [I16, U16, I32, U32]
sign_extend: true
- name: SRL
compile:
format: [Rd, Rt, Shamt]
expand:
- inst: SRL
data: [$Rd, $Rt, $Shamt]
only_derive: true
derives:
- DefaultValue:
value: Rt
default: $Rd
- Imm2Reg:
register: Rt
imm_types: [I16, U16, I32, U32]
sign_extend: true
- name: ROTR
compile:
format: [Rd, Rt, Shamt]
expand:
- inst: ROTR
data: [$Rd, $Rt, $Shamt]
only_derive: true
derives:
- DefaultValue:
value: Rt
default: $Rd
- name: SRA
compile:
format: [Rd, Rt, Shamt]
expand:
- inst: SRA
data: [$Rd, $Rt, $Shamt]
only_derive: true
derives:
- DefaultValue:
value: Rt
default: $Rd
- Imm2Reg:
register: Rt
imm_types: [I16, U16, I32, U32]
sign_extend: true
- name: SLLV
compile:
format: [Rd, Rt, Rs]
expand:
- inst: SLLV
data: [$Rd, $Rt, $Rs]
only_derive: true
derives:
- DefaultValue:
value: Rt
default: $Rd
- Imm2Reg:
register: Rt
imm_types: [I16, U16, I32, U32]
sign_extend: true
- name: SRLV
compile:
format: [Rd, Rt, Rs]
expand:
- inst: SRLV
data: [$Rd, $Rt, $Rs]
only_derive: true
derives:
- DefaultValue:
value: Rt
default: $Rd
- Imm2Reg:
register: Rt
imm_types: [I16, U16, I32, U32]
sign_extend: true
- name: ROTRV
compile:
format: [Rd, Rt, Rs]
expand:
- inst: ROTRV
data: [$Rd, $Rt, $Rs]
only_derive: true
derives:
- DefaultValue:
value: Rt
default: $Rd
- Imm2Reg:
register: Rt
imm_types: [I16, U16, I32, U32]
sign_extend: true
- name: SRAV
compile:
format: [Rd, Rt, Rs]
expand:
- inst: SRAV
data: [$Rd, $Rt, $Rs]
only_derive: true
derives:
- DefaultValue:
value: Rt
default: $Rd
- Imm2Reg:
register: Rt
imm_types: [I16, U16, I32, U32]
sign_extend: true
- name: JR
compile:
format: [Rs]
expand:
- inst: JR
data: [$Rs]
only_derive: true
- name: JALR
compile:
format: [Rd, Rs]
expand:
- inst: JALR
data: [$Rd, $Rs]
only_derive: true
- name: JALR
compile:
format: [Rs]
expand:
- inst: JALR
data: [$ra, $Rs]
- name: MOVZ
compile:
format: [Rd, Rs, Rt]
expand:
- inst: MOVZ
data: [$Rd, $Rs, $Rt]
only_derive: true
- name: MOVN
desc_short: Move Conditional on Not Zero
compile:
format: [Rd, Rs, Rt]
expand:
- inst: MOVN
data: [$Rd, $Rs, $Rt]
only_derive: true
- name: SYSCALL
compile:
format: []
expand:
- inst: SYSCALL
data: []
only_derive: true
- name: BREAK
compile:
format: []
expand:
- inst: BREAK
data: []
only_derive: true
- name: MFHI
compile:
format: [Rd]
expand:
- inst: MFHI
data: [$Rd]
only_derive: true
- name: CLZ
compile:
format: [Rd, Rs]
expand:
- inst: CLZ
data: [$Rd, $Rs]