문제

How can i start from the address of static data 0x10008000 and move to 0x10008008?
I don't know if i am wrong but those addresses are for 3 registers, and you can't store in the address 0x10008001.

도움이 되었습니까?

해결책

To load those 3 words into $t1 - $t3:

lui $t0 0x1000
ori $t0 0x8000
lw $t1 0($t0)
lw $t2 4($t0)
lw $t3 8($t0)
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top