1 /* 2 * Unconditional branch, 8-bit offset. 3 * 4 * The branch distance is a signed code-unit offset, which we need to 5 * double to get a byte offset. 6 */ 7 /* goto +AA */ 8 sll a0, rINST, 16 # a0 <- AAxx0000 9 sra rINST, a0, 24 # rINST <- ssssssAA (sign-extended) 10 b MterpCommonTakenBranchNoFlags 11