2018-03-16 15:56:19 +03:00
|
|
|
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/*
|
|
|
|
* Boot Information Types
|
|
|
|
* Used in the kernel boot process to determine
|
|
|
|
* how we booted and where we can get BIOS
|
|
|
|
* information from that bootloader.
|
|
|
|
*
|
|
|
|
*/
|
2018-03-19 05:38:11 +03:00
|
|
|
#include <kernel/system.h>
|
2018-03-16 15:56:19 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Multiboot
|
|
|
|
* A format managed by GNU and used in GRUB.
|
|
|
|
* Also supported natively by QEMU and a few
|
|
|
|
* other emulators.
|
|
|
|
*/
|
2018-03-19 05:38:11 +03:00
|
|
|
#include <kernel/multiboot.h>
|
2018-03-16 15:56:19 +03:00
|
|
|
|