aboutsummaryrefslogtreecommitdiffstats
path: root/boot.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-09-30 10:59:59 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-09-30 10:59:59 -0400
commit85c8fd05f1a0c0224882c4fafa60003d3ef56cf3 (patch)
treec86b968c5a53c0767c00116c6fc03f60c8e3aa64 /boot.cpp
parentabfdd6eb3ed61d13a47735812eca0028caf6b6da (diff)
compile with wall,extra,error,pedantic
Diffstat (limited to 'boot.cpp')
-rw-r--r--boot.cpp23
1 files changed, 12 insertions, 11 deletions
diff --git a/boot.cpp b/boot.cpp
index 1c46b63..6b1da6a 100644
--- a/boot.cpp
+++ b/boot.cpp
@@ -1,10 +1,20 @@
#include <array>
#include <cstdint>
+#include <span>
+extern void (*__init_array_start)();
+extern void (*__init_array_end)();
extern void kernel_main();
alignas(16)
-std::array<std::uint8_t, 16384> stack;
+static std::array<std::uint8_t, 16384> stack;
+
+static void init_array()
+{
+ std::span initArray (&__init_array_start, &__init_array_end);
+ for (auto& fn : initArray)
+ fn();
+}
extern "C"
__attribute__((naked))
@@ -16,16 +26,7 @@ void _start()
mov %0, %%esp
)" :: "i" (stack.data() + stack.size()));
- extern std::uint32_t __init_array_start;
- extern std::uint32_t __init_array_end;
-
- auto it = &__init_array_start;
- while (it < &__init_array_end) {
- auto fn = reinterpret_cast<void (*)()>(*it);
- fn();
- ++it;
- }
-
+ init_array();
kernel_main();
asm volatile("cli");