diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/protected_mode/mod.rs | 2 | ||||
-rw-r--r-- | src/real_mode/mod.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/protected_mode/mod.rs b/src/protected_mode/mod.rs index 482a921..2403a8a 100644 --- a/src/protected_mode/mod.rs +++ b/src/protected_mode/mod.rs @@ -6662,7 +6662,7 @@ fn read_with_annotations< self.read_operands(decoder, words, instruction, record, sink)?; if self.check_lock { - if (instruction.opcode as u32) < 0x1000 || !instruction.operands[0].is_memory() { + if !instruction.opcode.can_lock() || !instruction.operands[0].is_memory() { return Err(DecodeError::InvalidPrefixes); } } diff --git a/src/real_mode/mod.rs b/src/real_mode/mod.rs index 87f2ff3..2a3723f 100644 --- a/src/real_mode/mod.rs +++ b/src/real_mode/mod.rs @@ -6663,7 +6663,7 @@ fn read_with_annotations< self.read_operands(decoder, words, instruction, record, sink)?; if self.check_lock { - if (instruction.opcode as u32) < 0x1000 || !instruction.operands[0].is_memory() { + if !instruction.opcode.can_lock() || !instruction.operands[0].is_memory() { return Err(DecodeError::InvalidPrefixes); } } |