rearraged files, set up to use grub bootloader

This commit is contained in:
2026-06-10 18:28:33 -05:00
parent 0f8d5f8ce7
commit eb1e096bac
19 changed files with 270 additions and 386 deletions

11
kernel/lib/print.c Normal file
View File

@@ -0,0 +1,11 @@
#include "print.h"
#include "stream.h"
extern print_stream_t* kout;
void kprint(const char *str) {
while (*str) {
kout->putchar(*str);
str++;
}
}