summaryrefslogtreecommitdiff
path: root/conio.inc
diff options
context:
space:
mode:
authorhpa <hpa>2003-11-25 04:12:43 +0000
committerhpa <hpa>2003-11-25 04:12:43 +0000
commit16f5c17703a99c5fdef488274a037962b2fb72c1 (patch)
tree3522286888f7990546558ad45184981abb1fbbd3 /conio.inc
parentebedc65698898aaa701e5ff1e6bfe1cc318485ec (diff)
downloadsyslinux-16f5c17703a99c5fdef488274a037962b2fb72c1.tar.gz
- Handle ARP requests while idle in pxelinuxsyslinux-2.08-pre3
- Actually reallocate sockets correctly in pxelinux
Diffstat (limited to 'conio.inc')
-rw-r--r--conio.inc4
1 files changed, 3 insertions, 1 deletions
diff --git a/conio.inc b/conio.inc
index 7dc1572e..58c7e3a4 100644
--- a/conio.inc
+++ b/conio.inc
@@ -319,7 +319,9 @@ pollchar:
; getchar: Read a character from keyboard or serial port
;
getchar:
-.again: mov ah,1 ; Poll keyboard
+.again:
+ DO_IDLE
+ mov ah,1 ; Poll keyboard
int 16h
jnz .kbd ; Keyboard input?
mov bx,[SerialPort]