aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/io.c')
-rw-r--r--src/kernel/io.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/kernel/io.c b/src/kernel/io.c
index 60979f6..b6ea80c 100644
--- a/src/kernel/io.c
+++ b/src/kernel/io.c
@@ -10,7 +10,8 @@ uint16_t cursor = 0;
void VGA_RPrint(const char* str)
{
while(*str) {
- VGA[cursor++] = (uint8_t)(*str) | 0x0700; // white on black
+ // white on black
+ VGA[cursor++] = (uint8_t)(*str) | 0x0700;
str++;
}
}