Displaying 2 results from an estimated 2 matches for "tick_loop".
Did you mean:
tcm_loop
2004 Aug 04
1
pxelinux (2.08 or later) on VMware
...t out DO_IDLE in ui.inc (2.08 or later),
it works. but I'm not sure why... (vmware bug?)
Thanks,
Kaz
--- 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
...== 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 timer advanced?
je tick_loop
+
+ ; DTM BEGIN -------------------------------------------------
+ cmp [ShowTimeOut], word 0
+ jne .showtimeout
+ pop ax...