summaryrefslogtreecommitdiff
path: root/test/test2.asm
diff options
context:
space:
mode:
Diffstat (limited to 'test/test2.asm')
-rw-r--r--test/test2.asm18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/test2.asm b/test/test2.asm
new file mode 100644
index 00000000..5bbb034c
--- /dev/null
+++ b/test/test2.asm
@@ -0,0 +1,18 @@
+ USE16
+ CPU 386
+
+debugdump001:
+goo: jmp foo
+ jc near foo
+ mov ax,[si+5]
+ mov ax,[si-7]
+ mov ax,[si+n]
+ nop
+ resb 10
+foo: jmp goo
+ jc goo
+ jmp short goo
+debugdump002: push 0
+n equ 3
+
+