diff options
Diffstat (limited to 'test/test.rs')
-rw-r--r-- | test/test.rs | 4 |
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] |