kernel print and mem

This commit is contained in:
nub31
2025-08-22 23:39:38 +02:00
parent c3d42e8033
commit 6db69608bb
7 changed files with 173 additions and 8 deletions

View File

@@ -1,5 +1,7 @@
int main(void)
#include "print.h"
void init(void)
{
*(char*)0xb8000 = 'A';
return 0;
}
print_init();
print("Starting nub-os\n", VGA_FG_WHITE, VGA_BG_BLACK);
}