kernel: add basic console registration system and printk()

This commit is contained in:
2023-02-04 19:03:45 +00:00
parent d0a431c860
commit 31cb7aab8b
11 changed files with 186 additions and 31 deletions

View File

@@ -1,6 +1,9 @@
#ifndef SOCKS_PRINTK_H_
#define SOCKS_PRINTK_H_
#include <socks/console.h>
extern void early_printk_init(console_t *con);
extern int printk(const char *format, ...);
#endif