From a394c6d0045f5ff57ec1c10408719865df7935ba Mon Sep 17 00:00:00 2001 From: czjstmax Date: Tue, 12 May 2026 21:37:11 +0200 Subject: update Signed-off-by: czjstmax --- src/kernel/io.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/kernel/io.c') diff --git a/src/kernel/io.c b/src/kernel/io.c index 22a5fa3..60979f6 100644 --- a/src/kernel/io.c +++ b/src/kernel/io.c @@ -7,7 +7,8 @@ volatile uint16_t* VGA = (volatile uint16_t*)0xB8000; uint16_t cursor = 0; -void VGA_RPrint(const char* str) { +void VGA_RPrint(const char* str) +{ while(*str) { VGA[cursor++] = (uint8_t)(*str) | 0x0700; // white on black str++; -- cgit v1.3.1