feat: formatter and oslog()
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
|
||||
Int32 IOSerialPutCharacter(ASCII character) {
|
||||
// TXFF -- TRansmit FIFO Full for PL011 is 5 bit of FR reg (0x18)
|
||||
UInt64 uartFR = kUARTBaseAddress + 0x18;
|
||||
UInt64 uartFR = kUARTBaseAddress + 0x18;
|
||||
|
||||
while ((IOAddressRead32(uartFR) & (1 << 5)) != 0) {
|
||||
CPUYield();
|
||||
@@ -22,4 +22,4 @@ Int32 IOSerialPutString(const ASCII* string) {
|
||||
}
|
||||
|
||||
return i;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user