aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2019-12-01 15:38:00 -0800
committeriximeow <me@iximeow.net>2020-01-12 16:10:13 -0800
commitff636d091f911f0467f8bd2ece0c771a26c88729 (patch)
tree972f630cea71dd286d524cb8ed9556c3eaf89d24 /test
parent071dbfd2f1407842a6487a67e6ce83e80fedb99c (diff)
proper movs operand support
Diffstat (limited to 'test')
-rw-r--r--test/test.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test.rs b/test/test.rs
index 2d9c95e..cc865d9 100644
--- a/test/test.rs
+++ b/test/test.rs
@@ -252,8 +252,8 @@ fn test_misc() {
test_display(&[0x48, 0x8d, 0x0c, 0x12], "lea rcx, [rdx + rdx * 1]");
test_display(&[0xf6, 0xc2, 0x18], "test dl, 0x18");
test_display(&[0xf3, 0x48, 0xab], "rep stos es:[rdi], rax");
-// test_display(&[0xf3, 0x48, 0xa5], "rep movs es:[rdi], ds:[rsi]");
-// test_display(&[0xf3, 0x45, 0x0f, 0xbc, 0xd7], "tzcnt r10d, r15d");
+ test_display(&[0xf3, 0x48, 0xa5], "rep movs es:[rdi], ds:[rsi]");
+ test_display(&[0xf3, 0x45, 0x0f, 0xbc, 0xd7], "tzcnt r10d, r15d");
}
#[test]