diff options
Diffstat (limited to 'test/protected_mode')
-rw-r--r-- | test/protected_mode/mod.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/protected_mode/mod.rs b/test/protected_mode/mod.rs index fd77b5e..0f3a6ff 100644 --- a/test/protected_mode/mod.rs +++ b/test/protected_mode/mod.rs @@ -3138,6 +3138,9 @@ fn test_keylocker() { #[test] fn from_llvm() { test_display(&[0xf3, 0x0f, 0x3a, 0xf0, 0xc0, 0x01], "hreset 0x1"); + let mut reader = yaxpeax_arch::U8Reader::new(&[0xf3, 0x0f, 0x3a, 0xf0, 0xc0, 0x01]); + let hreset = InstDecoder::default().decode(&mut reader).expect("can disassemble test instruction"); + assert_eq!(hreset.operand_count(), 1); } #[test] |