Add a CR after PE/VM console output

This commit is contained in:
Eugene D Myers 2020-07-17 14:00:17 -04:00
parent bac814bc25
commit ed759cc689
1 changed files with 1 additions and 0 deletions

View File

@ -96,6 +96,7 @@ void PeIoHandler( IN UINT32 CpuIndex)
AcquireSpinLock (&mInternalDebugLock);
SerialPortWrite ((UINT8 *)"(VM/PE) ", sizeof("(VM/PE) ") - 1);
SerialPortWrite ((UINT8 *) PhysAddress, DataSize);
SerialPortWrite ((UINT8 *)"\r", 1);
ReleaseSpinLock (&mInternalDebugLock);
}
}