1
0
Fork 0

feat: Added nanoprintf, kprintf and GDT

This commit is contained in:
Kevin Alavik 2025-05-14 13:57:53 +02:00
parent aa5a1e8e1a
commit 248879c099
Signed by: cmpsb
GPG key ID: 10D1CC0526FDC6D7
9 changed files with 1346 additions and 5 deletions

8
kernel/src/util/log.h Normal file
View file

@ -0,0 +1,8 @@
#ifndef LOG_H
#define LOG_H
#include <util/kprintf.h>
#define early(fmt, ...) kprintf("early: " fmt "\n", ##__VA_ARGS__)
#endif // LOG_H