feat: added shutdown command

This commit is contained in:
2021-03-03 22:12:37 +01:00
parent c9102fbc65
commit 300e80c2e8
6 changed files with 71 additions and 25 deletions

View File

@@ -4,6 +4,7 @@
#ifndef NEW_KERNEL_LIBK_H
#define NEW_KERNEL_LIBK_H
#include <attributes.h>
#include <stdbool.h>
extern void* _kernel_start;
@@ -15,8 +16,8 @@ bool k_addr_in_kspace(void *addr);
void k_wait_for_interrupt();
void k_panics(const char *msg);
void noreturn k_panics(const char *msg);
void k_panic();
void noreturn k_panic();
#endif //NEW_KERNEL_LIBK_H