Home | History | Annotate | Download | only in mips
      1     # const vAA,                           /* +BBBBbbbb */
      2     GET_OPA(a3)                            #  a3 <- AA
      3     FETCH(a0, 1)                           #  a0 <- bbbb (low)
      4     FETCH(a1, 2)                           #  a1 <- BBBB (high)
      5     FETCH_ADVANCE_INST(3)                  #  advance rPC, load rINST
      6     sll       a1, a1, 16
      7     or        a0, a1, a0                   #  a0 <- BBBBbbbb
      8     GET_INST_OPCODE(t0)                    #  extract opcode from rINST
      9     SET_VREG_GOTO(a0, a3, t0)              #  vAA <- a0
     10