Provide the type and assembly language for the following binary value:
0000 00 10 000 1 0001 0100 0 000 00 10 0000two (8 points)
R-type instruction
Binary Value 000000 10000 10001 01000 00000 100000
Assembly Code Op = 0 (Add) Rs = 16 ($s0)
Rt = 17 ($s1) Rd = 8($t0) Shamt = 0 Funct = (add)
Add $t0, $s0, $s1
This is what I have gotten, but I’m unsure if it is correct. I’m unsure on how to convert binary code into instructions of r-type.