2.24.1 Assume that the register $t1 contains the address 0x1000 0000 and the register
$t2 contains the address 0x1000 0010. Note the MIPS architecture utilizes bigendian
addressing.
a. lbu $t0, 0($t1)
sw $t0, 0($t2)
b. lb $t0, 0($t1)
sh $t0, 0($t2)
[5] <2.9> Assume that the data (in hexadecimal) at address 0x1000 0000 is:
1000 0000 12 34 56 78
What value is stored at the address pointed to by register $t2? Assume that
the memory location pointed to $t2 is initialized to 0xFFFF FFFF.
 
 
View Solution
 
 
 
<< Back Next >>