Here is a piece of MIPS code. Convert it to CPU instructions and "place it in memory" starting from the address 0xAC0050
Posted: Thu Jul 14, 2022 2:06 pm
Here is a piece of MIPS code. Convert it to CPU instructions and "place it in memory" starting from the address 0xAC005054 the way we did it in class. Use the big-endian approach. Show the address of each used byte of memory. addi \$t3, \$zero, −28 START_LOOP: beq \$t3, \$zero, FINISH_LOOP add $ s7,$t3,$ s7 addi $t3,$t3,2 j START_LOOP FINISH_LOOP: