decoder/arm: Fix decoding of RFE

This commit is contained in:
MerryMage 2016-12-22 15:25:07 +00:00
parent 7e77ee7fd6
commit cb38c94b58

View file

@ -311,7 +311,7 @@ std::vector<ArmMatcher<V>> GetArmDecodeTable() {
INST(&V::arm_MRS, "MRS", "cccc000100001111dddd000000000000"), // v3
INST(&V::arm_MSR_imm, "MSR (imm)", "cccc00110010mm001111rrrrvvvvvvvv"), // v3
INST(&V::arm_MSR_reg, "MSR (reg)", "cccc00010010mm00111100000000nnnn"), // v3
INST(&V::arm_RFE, "RFE", "----0001101-0000---------110----"), // v6
INST(&V::arm_RFE, "RFE", "1111100--0-1----0000101000000000"), // v6
INST(&V::arm_SRS, "SRS", "0000011--0-00000000000000001----"), // v6
#undef INST