From fb79b4a218a715aba8d0a4f8126a6ded532be449 Mon Sep 17 00:00:00 2001 From: iximeow Date: Sun, 9 Aug 2020 18:53:56 -0700 Subject: add 32-bit-only instructions --- src/protected_mode/display.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/protected_mode/display.rs') diff --git a/src/protected_mode/display.rs b/src/protected_mode/display.rs index 6f73df1..171118a 100644 --- a/src/protected_mode/display.rs +++ b/src/protected_mode/display.rs @@ -1214,6 +1214,12 @@ const MNEMONICS: &[&'static str] = &[ "pusha", "popa", "arpl", + "aas", + "aaa", + "das", + "daa", + "amx", + "adx", ]; impl Opcode { @@ -1579,6 +1585,12 @@ impl > Colorize { write!(out, "{}", colors.arithmetic_op(self)) } Opcode::POPF | Opcode::PUSHF | -- cgit v1.1