Question 1: Write the Machine Code for the given MIPS Code that starts at address 0x80000. For each instruction answer the following.
(a) Instruction Format
(b) Binary Machine Code
(c) Hex Machine Code
Main:
ble $s0, $0, End
sub $a0, $50, $0
Jal Func
J End
Func:
add $v0, $0, $0
Loop:
addi $v0, $v0, 1
srl $a0, $a0, 1
bgt $a0, $0, Loop
Ret:
jr $ra
End: