From ff636d091f911f0467f8bd2ece0c771a26c88729 Mon Sep 17 00:00:00 2001 From: iximeow Date: Sun, 1 Dec 2019 15:38:00 -0800 Subject: proper movs operand support --- test/test.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/test.rs') 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] -- cgit v1.1