aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2019-05-29 00:00:37 -0700
committeriximeow <me@iximeow.net>2020-01-12 16:10:13 -0800
commit09df8f120f23d733df2171b4b3e2380b6889cf3c (patch)
treefed892b4267327f0a2475233a3ba2154a3a418ae /test
parentb6ace85e557fc69f155b60890929452ac5ef0fb9 (diff)
segment rendering fixes
Diffstat (limited to 'test')
-rw-r--r--test/test.rs1
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]