diff options
author | iximeow <me@iximeow.net> | 2020-08-02 20:57:17 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2020-08-09 01:38:57 -0700 |
commit | 4112c2282a207ab0738db44dfc69caf68fe50de9 (patch) | |
tree | 02d1e364cfc33eb044bc7ef1279cf0709a3cfba7 /test | |
parent | f87d5d33c50adc6c7112945e61b23e4c4dd3e83c (diff) |
fix setcc decoding
Diffstat (limited to 'test')
-rw-r--r-- | test/long_mode/mod.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/long_mode/mod.rs b/test/long_mode/mod.rs index ca4670c..7472c06 100644 --- a/test/long_mode/mod.rs +++ b/test/long_mode/mod.rs @@ -1062,6 +1062,11 @@ fn test_mov() { test_display(&[0x48, 0x63, 0x04, 0xba], "movsxd rax, [rdx + rdi * 4]"); test_display(&[0xf3, 0x0f, 0x6f, 0x07], "movdqu xmm0, [rdi]"); test_display(&[0xf3, 0x0f, 0x7f, 0x45, 0x00], "movdqu [rbp], xmm0"); + + test_display(&[0x0f, 0x97, 0xc0], "seta al"); + test_display(&[0x0f, 0x97, 0xc8], "seta al"); + test_display(&[0x0f, 0x97, 0x00], "seta [rax]"); + test_display(&[0x0f, 0x97, 0x08], "seta [rax]"); } #[test] |