diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test.rs b/test/test.rs index 1e73a2e..f8dadbb 100644 --- a/test/test.rs +++ b/test/test.rs @@ -83,6 +83,7 @@ fn test_mov() { test_display(&[0x0f, 0xb6, 0x06], "movzx eax, byte [rsi]"); test_display(&[0x0f, 0xb7, 0x06], "movzx eax, word [rsi]"); test_display(&[0x89, 0x55, 0x94], "mov [rbp - 0x6c], edx"); + test_display(&[0x65, 0x4c, 0x89, 0x04, 0x25, 0xa8, 0x01, 0x00, 0x00], "mov gs:[0x1a8], r8"); } #[test] |