Displaying 2 results from an estimated 2 matches for "time_loop".
2004 Aug 04
1
pxelinux (2.08 or later) on VMware
...az
--- ui.inc.orig Wed Aug 4 00:58:38 2004
+++ ui.inc Wed Aug 4 01:07:39 2004
@@ -60,7 +60,7 @@
cmp dx,ax ; Has the timer advanced?
je tick_loop
pop cx
- DO_IDLE
+ ;DO_IDLE
loop time_loop ; If so, decrement counter
; Timeout!!!!
2002 Feb 26
0
syslinux timeout
...nt 16h
@@ -1479,30 +1496,67 @@
jmp short clear_buffer
get_char_time:
call vgashowcursor
mov cx,[KbdTimeOut]
and cx,cx
jz get_char ; Timeout == 0 -> no timeout
inc cx ; The first loop will happen
; immediately as we don't
; know the appropriate DX value
time_loop: push cx
+ ; DTM BEGIN ------------------------------------------------
+ push cx
+ ; DTM END --------------------------------------------------
tick_loop: push dx
call pollchar
jnz get_char_pop
xor ax,ax
int 1Ah ; Get time "of day"
pop ax
cmp dx,ax ; Has the ti...