Displaying 1 result from an estimated 1 matches for "parse_config_2".
Did you mean:
  parse_config
  
2002 Feb 26
0
syslinux timeout
...cmp ax,'pr'			; PRompt
 		je near pc_prompt
 		cmp ax,'fo'			; FOnt
 		je near pc_font
 		cmp ax,'kb'			; KBd
 		je near pc_kbd
 		cmp ax,'di'			; DIsplay
 		je near pc_display
 		cmp ax,'la'			; LAbel
 		je near pc_label
@@ -1260,20 +1267,27 @@
 		jmp short parse_config_2
 
 pc_timeout:	call getint			; "timeout" command
 		jc parse_config_2
 		mov ax,0D215h			; There are approx 1.D215h
 		mul bx				; clock ticks per 1/10 s
 		add bx,dx
 		mov [KbdTimeOut],bx
 		jmp short parse_config_2
 
+; DTM BEGIN ------------------------------------------------
+pc_sho...