summaryrefslogtreecommitdiff
path: root/test/test2a.asm
diff options
context:
space:
mode:
Diffstat (limited to 'test/test2a.asm')
-rw-r--r--test/test2a.asm22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/test2a.asm b/test/test2a.asm
new file mode 100644
index 00000000..2ed09a76
--- /dev/null
+++ b/test/test2a.asm
@@ -0,0 +1,22 @@
+ use32
+ cpu P3
+
+debugdump001:
+goo: jmp foo
+; cpu 386
+ jc near foo
+ mov ax,[si+5]
+ mov ax,[si-7]
+ mov ax,[si+n]
+ align 16
+; cpu 486
+ bswap edx
+; cpu 186
+ resb 10
+foo: jmp goo
+ jc goo
+ jmp short goo
+debugdump002: push 0
+n equ 3
+
+