Skip to content
Snippets Groups Projects
Commit 4400dbc5 authored by rswindell's avatar rswindell
Browse files

Virtualized UART Bug-fix: return 0 when reading the base I/O register and

there's no data waiting.
KnK v4.4 (using QBSERIAL 3.10) apparently keeps reading the base I/O register
for input data until it reads 0.
parent 7104204a
No related branches found
No related tags found
No related merge requests found
......@@ -333,8 +333,10 @@ VOID uart_rdport(WORD port, PBYTE data)
lprintf(LOG_DEBUG,"READ DATA: 0x%02X", *data);
avail--;
reset_yield();
}
} else
*data=0;
if(avail==0) {
lprintf(LOG_DEBUG,"No more data");
/* Clear the data ready bit in the LSR */
uart_lsr_reg &= ~UART_LSR_DATA_READY;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment