From 2420e3f52b62580af9cdd661fb441733e437daf9 Mon Sep 17 00:00:00 2001 From: czjstmax Date: Mon, 23 Feb 2026 23:18:48 +0100 Subject: lots of changes. restructured repository. switched to limine. Signed-off-by: czjstmax --- src/krn/api/io.h | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/krn/api/io.h (limited to 'src/krn/api') diff --git a/src/krn/api/io.h b/src/krn/api/io.h deleted file mode 100644 index fd92722..0000000 --- a/src/krn/api/io.h +++ /dev/null @@ -1,18 +0,0 @@ -#define MÜLL_IO_H - -/* - * Minimal API for kernel I/O basics - */ - -// includes -#include - -volatile uint16_t* VGA = (volatile uint16_t*)0xB8000; -uint16_t cursor = 0; - -void RealPrint(const char* str) { - while(*str) { - VGA[cursor++] = (uint8_t)(*str) | 0x0700; // white on black - str++; - } -} \ No newline at end of file -- cgit v1.3.1