NAR-5050/5070 Series User
’
s Manual
55
; call fixdelay
; pop cx
jmp loop_message_init
loop_message2 :
cmp cx,01h
jne loop_message3
mov ah,02h
mov dl,5Ch ; cx = 1 , "X" display
int 21h
dec cx
lea dx,promp_bs ; back space , ASCII="08h"
mov ah,9
int 21h
; push cx
; mov cx,0010h
; call fixdelay
; pop cx
jmp loop_message_init
loop_message3 :
mov ah,02h
mov dl,2Dh ; cx = 1 , "-" display
int 21h
lea dx,promp_bs ; back space , ASCII="08h"
mov ah,9
int 21h
; push cx
; mov cx,0010h
; call fixdelay
; pop cx
pop cx ; total_count
dec cx
jz proc_return ; Return
jmp total_count
proc_return :
pop dx
pop cx
pop ax
ret
LOOP_DISPLAY_4_CHAR ENDP
END programstart