ft: implement missing lock instruction

This commit is contained in:
2025-05-28 14:23:56 +09:00
parent a21cc2b4b3
commit 7e8fdeba54
2 changed files with 5 additions and 8 deletions

View File

@@ -295,6 +295,7 @@ pub enum Mnemonic {
AAD(Byte),
// MISC
XLAT,
LOCK,
}
impl fmt::Display for Mnemonic {
@@ -533,6 +534,8 @@ impl fmt::Display for Mnemonic {
Self::XLAT => write!(f, "xlat"),
Self::LOCK => write!(f, "lock"),
_ => write!(f, "??? ??, ??"),
}
}