aboutsummaryrefslogtreecommitdiff
path: root/test/long_mode/mod.rs
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2021-01-15 18:40:31 -0800
committeriximeow <me@iximeow.net>2021-01-15 18:41:16 -0800
commit6232e8b1daf7067cb2e8065687530d5f88ecb46d (patch)
tree864b839a32f0154579a6a4c79ca227045f1a202e /test/long_mode/mod.rs
parentd8083b08dc987adeda73fb13298383c6cf519596 (diff)
support xchg AX/reg0.1.5
Diffstat (limited to 'test/long_mode/mod.rs')
-rw-r--r--test/long_mode/mod.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/long_mode/mod.rs b/test/long_mode/mod.rs
index 0830c2d..c3933ab 100644
--- a/test/long_mode/mod.rs
+++ b/test/long_mode/mod.rs
@@ -1137,6 +1137,14 @@ fn test_mov() {
}
#[test]
+fn test_xchg() {
+ test_display(&[0x90], "nop");
+ test_display(&[0x91], "xchg eax, ecx");
+ test_display(&[0x4f, 0x91], "xchg r8, r9");
+ test_display(&[0x66, 0x91], "xchg ax, cx");
+}
+
+#[test]
fn test_stack() {
test_display(&[0x66, 0x41, 0x50], "push r8w");
}