ARM: Define a new "movt" data processing instruction.

This commit is contained in:
Gabe Black 2010-06-02 12:58:03 -05:00
parent b615ed1470
commit dcf218155d

View file

@ -185,4 +185,6 @@ let {{
buildDataInst("mov", "Dest = resTemp = secondOp;")
buildDataInst("bic", "Dest = resTemp = Op1 & ~secondOp;")
buildDataInst("mvn", "Dest = resTemp = ~secondOp;")
buildDataInst("movt",
"Dest = resTemp = insertBits(Op1, 31, 16, secondOp);")
}};