这些伪指令的MIPS等效项是什么?

时间:2019-10-13 02:39:38

标签: mips computer-science

  1. rol $t7, $t6, $t8

    这就像:

    sll $t0, $t3, 8 # get rid of bits 31-23
    srl $t1, $t3, 24 #move 31-32 to 7-0
    or $t7, $t0, $t1 # do an or statement
    

    对吗?

  2. 这个呢?

    ld   $t2, 0($t8)
    

0 个答案:

没有答案