summaryrefslogtreecommitdiff
path: root/test/test4.asm
diff options
context:
space:
mode:
Diffstat (limited to 'test/test4.asm')
-rw-r--r--test/test4.asm16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/test4.asm b/test/test4.asm
new file mode 100644
index 00000000..357553e2
--- /dev/null
+++ b/test/test4.asm
@@ -0,0 +1,16 @@
+ cpu 186
+
+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