Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ロード命令の後に別のロード命令があるとすると、実行の順序は何ですか?例:
lui $t0, 0x1000 #(1) lbu $t1, ($t0) #(2) addi $t0, $t0, 1 #(3)
Spimでテストしたところ、結果は(1)->(2)->(3)の順でしたが、負荷の指示では負荷遅延スロットを考慮に入れる必要があるため、理解できません。