summaryrefslogtreecommitdiff
path: root/test/test4.asm
blob: 357553e29297f19ccff7d923829ce02dfc1017f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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