; test5 - conditional jumps begin: mov ax, 5 mov bx, 5 cmp ax, bx je equals jmp not_equals equals: mov cx, 1 ; cx is one on equality jmp test2 not_equals: mov cx, 0 ; cx is zero on inequality test2: mov ax, 5 mov bx, 6 cmp ax, bx je equals2 jmp not_equals2 equals2: mov dx, 1 ; dx is one on equality jmp end2 not_equals2: mov dx, 0 ; dx is zero on inequality jmp end2 end2: hlt