blob: 25800f4f3c44a581bdbc7bbbbf2b7abc7630ebe6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef TEACHOS_ARCH_X86_64_BOOT_POINTERS_HPP
#define TEACHOS_ARCH_X86_64_BOOT_POINTERS_HPP
#include <cstddef>
namespace teachos::arch::boot
{
extern "C" size_t const multiboot_information_pointer;
} // namespace teachos::arch::boot
#endif
|