aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2020-02-16 02:02:32 -0800
committeriximeow <me@iximeow.net>2020-02-16 02:02:32 -0800
commit78d0c21c475fce65c36e64a36c26c689bee0faae (patch)
treeb08d6b077e799e7e42902645bcd289aa22be5649 /test
parentfb41b5261b49f67e67e87e3a7401d748781d6c29 (diff)
embarassingly had OperandSpec variants for modrm displacement == 0 backwards
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 896ffaa..1bac590 100644
--- a/test/test.rs
+++ b/test/test.rs
@@ -476,6 +476,7 @@ fn test_control_flow() {
test_display(&[0x0f, 0x86, 0x8b, 0x01, 0x00, 0x00], "jna 0x18b");
test_display(&[0x74, 0x47], "jz 0x47");
test_display(&[0xff, 0x15, 0x7e, 0x72, 0x24, 0x00], "call [rip + 0x24727e]");
+ test_display(&[0xff, 0x24, 0xcd, 0x70, 0xa0, 0xbc, 0x01], "jmp [rcx * 8 + 0x1bca070]");
test_display(&[0xc3], "ret");
}