Hi, I wanna ask.. I want to make a procedure of 1 second delay for 8088
so far here what I have
debounce:
PROC NEAR
PUSH CX
delay:
MOV CX, 6000H ;24576 in decimal
L1:
LOOP L1 ;
POP CX
RET
debounce ENDP
so, can someone please help me..I don't think the code is working properly