summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Private/HALKit/AMD64/HalDebugOutput.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Private/HALKit/AMD64/HalDebugOutput.cxx b/Private/HALKit/AMD64/HalDebugOutput.cxx
index da40f5af..ed247875 100644
--- a/Private/HALKit/AMD64/HalDebugOutput.cxx
+++ b/Private/HALKit/AMD64/HalDebugOutput.cxx
@@ -86,10 +86,11 @@ EXTERN_C void ke_io_read(const char* bytes) {
SizeT index = 0;
+ ///! TODO: Look on how to wait for the UART to complete.
while (true) {
auto in = HAL::In8(Detail::PORT);
- // if enter pressed -> break.
+ ///! If enter pressed then break.
if (in == 0xD) {
break;
}