rearraged files, set up to use grub bootloader
This commit is contained in:
11
kernel/lib/print.c
Normal file
11
kernel/lib/print.c
Normal 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++;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user