about summary refs log tree commit diff stats
path: root/example/samples/test_x86_32_dis.S
diff options
context:
space:
mode:
Diffstat (limited to 'example/samples/test_x86_32_dis.S')
-rw-r--r--example/samples/test_x86_32_dis.S12
1 files changed, 12 insertions, 0 deletions
diff --git a/example/samples/test_x86_32_dis.S b/example/samples/test_x86_32_dis.S
new file mode 100644
index 00000000..d2e77bf9
--- /dev/null
+++ b/example/samples/test_x86_32_dis.S
@@ -0,0 +1,12 @@
+main:
+	CMP    EAX, 0x10
+	JZ     lbl2
+	MOV    ESI, EAX
+	CMOVA  EAX, EBX
+	JMP    end
+lbl2:
+	MOV    EAX, ECX
+	CALL   0x11223344
+	INC    EAX
+end:
+	RET