Hi when decoding mips using mips language you have to partition the code.
After youve partitioned the instruction lets say a branch instruction into:
OP code
Sregister
Tregister
Address
$t1
contains the value 0100
which is 8 and I wanted to print this as 8:
If i tried to print $t1
i get the integer 0100
instead of 8
. Does anyone know a way around this?