summaryrefslogtreecommitdiff
path: root/test/test4c.asm
diff options
context:
space:
mode:
Diffstat (limited to 'test/test4c.asm')
-rw-r--r--test/test4c.asm17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/test4c.asm b/test/test4c.asm
new file mode 100644
index 00000000..5d873490
--- /dev/null
+++ b/test/test4c.asm
@@ -0,0 +1,17 @@
+ use32
+ cpu 386
+
+start: jmp able
+ xor ax,ax
+ jc start
+ jnc able
+ jc charlie
+ times 100 nop
+able: jc start
+ times 100 nop
+baker: jc start
+ times 100 nop
+charlie: jc baker
+ jnc able
+ jmp start
+end: db 0