Provide the type and assembly language for the following bin
Provide the type and assembly language for the following binary value: 0000 0010 0001 0001 0100 0000 0010 0000two
Provide the type, assembly language instruction, and binary representation of instruction described by the following MIPS fields:
op = 0, rs = 10, rt= 15, rd = 22, shamt = 0, function = 36
Solution
0000 0010 0001 0001 0100 0000 0010 0000two
fields of ADD are as follows: Bits 25 to 21:Rs Bits 20 to 16:Rt Bits 15 to 11:Rd Bits
That is why from the above values we can tell that this is R-Type instruction - add $s0,$s0, $s0
