decoder/arm: Correct NOP decoder

This commit is contained in:
MerryMage 2016-08-18 18:20:29 +01:00
parent e9e7ac6e65
commit 36a916a766

View file

@ -237,7 +237,7 @@ std::vector<ArmMatcher<V>> GetArmDecodeTable() {
// Miscellaneous instructions // Miscellaneous instructions
INST(&V::arm_CLZ, "CLZ", "cccc000101101111dddd11110001mmmm"), // v5 INST(&V::arm_CLZ, "CLZ", "cccc000101101111dddd11110001mmmm"), // v5
INST(&V::arm_NOP, "NOP", "----001100100000111100000000----"), // v6K INST(&V::arm_NOP, "NOP", "----0011001000001111000000000000"), // v6K
INST(&V::arm_SEL, "SEL", "cccc01101000nnnndddd11111011mmmm"), // v6 INST(&V::arm_SEL, "SEL", "cccc01101000nnnndddd11111011mmmm"), // v6
// Unsigned Sum of Absolute Differences instructions // Unsigned Sum of Absolute Differences instructions