diff options
Diffstat (limited to 'kernel/inc/boot.h')
-rw-r--r-- | kernel/inc/boot.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/kernel/inc/boot.h b/kernel/inc/boot.h new file mode 100644 index 0000000..1a41c32 --- /dev/null +++ b/kernel/inc/boot.h @@ -0,0 +1,10 @@ +// MIT License, Copyright (c) 2020 Marvin Borner +// This file specifies the structs passed by the bootloader + +#include <def.h> +#include <vesa.h> + +struct vid_info { + u32 mode; + struct vbe *info; +}; |