summaryrefslogtreecommitdiff
path: root/test/test4b.asm
blob: 63448817b9457ffc866e1d62d78e137ebc55f21d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
	use32
	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