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