diff options
author | iximeow <me@iximeow.net> | 2019-07-13 12:12:12 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2020-01-12 16:10:13 -0800 |
commit | c638fb0c342d0284a6a7bff6ecea8302c8cb83ba (patch) | |
tree | 81a5788b0d9b027aa63d419b45e457ec338708de | |
parent | 9f295bbc4249a01cc8d47b7c477737b61357fc35 (diff) |
mov test cases
-rw-r--r-- | test/test.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test.rs b/test/test.rs index 722be16..df0e1343 100644 --- a/test/test.rs +++ b/test/test.rs @@ -108,6 +108,8 @@ fn test_mov() { test_display(&[0x65, 0x4c, 0x89, 0x04, 0x25, 0xa8, 0x01, 0x00, 0x00], "mov gs:[0x1a8], r8"); test_display(&[0x0f, 0xbe, 0x83, 0xb4, 0x00, 0x00, 0x00], "movsx eax, byte [rbx + 0xb4]"); test_display(&[0x48, 0x63, 0x04, 0xba], "movsxd rax, [rdx + rdi * 4]"); + test_display(&[0xf3, 0x0f, 0x6f, 0x07], "movdqu xmm0, xmmword [rdi]"); + test_display(&[0xf3, 0x0f, 0x7f, 0x45, 0x00], "movdqu xmmword [rbp], xmm0"); } #[test] |