NASM 0.98.03
[nasm.git] / test / test4a.asm
blobbbf85a31cfe5b31b07c408e6dd26f6484c036dc9
1 cpu 386
3 start: jmp able
4 xor ax,ax
5 jc start
6 jnc able
7 jc charlie
8 times 100 nop
9 able: jc start
10 times 100 nop
11 baker: jc start
12 times 100 nop
13 charlie: jc baker
14 jnc able
15 jmp start
16 end: db 0