In emu8086, I have written this code
include 'emu8086.inc'
org 100h
MOV AX,-1
CMP AX,0
JB case1
case2:
printn 'This line should not be displayed'
case1:
print 'I want this line'
ret
It is supposed to be printed only the case 1, but in this case output is showing both the cases. What am I doing wrong?