I have the following code,
Objective:
Display a row of N * symbols
Code:
MOV CX, N
MOV AH, 2
MOV DL, '*'
JCXZ END_P
BACK:
INT 21H
LOOP BACK
END_P:
The above example was shown to tell how to use JCXZ but I don’t get it. Even if I remove JCXZ, it would do the same work. Please help me out. Thanks
What makes you think it would do the same thing without
jcxz? What would happen with and without thejcxzif n is zero?