feat: some clean up and validation of multiboot header

This commit is contained in:
2021-03-04 22:18:58 +01:00
parent 300e80c2e8
commit e532099ea7
9 changed files with 419 additions and 15 deletions

View File

@@ -50,6 +50,10 @@ void kprint_internal(const char *msg) {
}
}
void kprint_sync(const char* msg) {
kprint_internal(msg);
}
void kprint_init() {
kprint_stream = stream_create(STREAM_SIZE);
}