Changeset 2147 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Apr 17, 2007 8:49:46 PM (18 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/VBox/logbackdoor.cpp
r2146 r2147 66 66 { 67 67 for (const uint8_t *pu8 = (const uint8_t *)pch; cb-- > 0; pu8++) 68 ASMOut 8(RTLOG_DEBUG_PORT, *pu8);68 ASMOutU8(RTLOG_DEBUG_PORT, *pu8); 69 69 /** @todo a rep outs could be more efficient, I don't know... 70 70 * @code -
trunk/src/VBox/Runtime/logcom.cpp
r2146 r2147 107 107 do 108 108 { 109 u8 = ASMIn 8(UART_BASE + 5);109 u8 = ASMInU8(UART_BASE + 5); 110 110 cMaxWait--; 111 111 } while (!(u8 & 0x20) && u8 != 0xff && cMaxWait); 112 112 113 113 /* write */ 114 ASMOut 8(UART_BASE, *pu8);114 ASMOutU8(UART_BASE, *pu8); 115 115 } 116 116 }
Note:
See TracChangeset
for help on using the changeset viewer.