1    /* move-wide vA, vB */
2    /* NOTE: regs can overlap, e.g. "move v6,v7" or "move v7,v6" */
3    lsr     w3, wINST, #12              // w3<- B
4    ubfx    w2, wINST, #8, #4           // w2<- A
5    GET_VREG_WIDE  x3, w3
6    FETCH_ADVANCE_INST 1                // advance rPC, load wINST
7    GET_INST_OPCODE ip                  // extract opcode from wINST
8    SET_VREG_WIDE  x3, w2
9    GOTO_OPCODE ip                      // jump to next instruction
10