diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-27 20:24:07 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-27 20:24:07 -0400 |
commit | 8f9329da623bf0812df44f60867180020283ff3f (patch) | |
tree | 08be9ccc06872609a7c0fba400c1adf414e86c60 /boot.cpp | |
parent | bd0acf88361a4b73a49d11a45177e72bf32091bc (diff) |
acpi detection
Diffstat (limited to 'boot.cpp')
-rw-r--r-- | boot.cpp | 37 |
1 files changed, 0 insertions, 37 deletions
@@ -3,43 +3,6 @@ extern void kernel_main(); -struct multiboot2 -{ - static constexpr std::uint32_t MAGIC = 0xE85250D6; - static constexpr std::uint32_t FLAGS = 0; - static constexpr std::uint32_t LENGTH = 16; - static constexpr std::uint32_t CHECKSUM = -(MAGIC + FLAGS + LENGTH); - - alignas(8) - std::uint32_t magic = MAGIC; - std::uint32_t flags = FLAGS; - std::uint32_t length = LENGTH; - std::uint32_t checksum = CHECKSUM; -} __attribute__((packed)); - -struct multiboot2_tag -{ - alignas(8) - std::uint16_t id; - std::uint16_t flags; - std::uint32_t length; - std::uint32_t data[]; -} __attribute__((packed)); - -__attribute__((section(".multiboot2"))) -multiboot2 multibootHeader; - -__attribute__((section(".multiboot2"))) -multiboot2_tag multibootTagInfoRequest = { - 1, 0, sizeof(multiboot2_tag) + sizeof(std::uint32_t), - {4} -}; - -__attribute__((section(".multiboot2"))) -multiboot2_tag multibootTagEnd = { - 0, 0, sizeof(multiboot2_tag), {} -}; - alignas(16) std::array<std::uint8_t, 16384> stack; |