| 104 | extern "C" void _init(); |
| 105 | |
| 106 | void InitializeConstructors(){ |
| 107 | unsigned ctorCount = ((uint64_t)&_ctors_end - (uint64_t)&_ctors_start) / sizeof(void*); |
| 108 | |
| 109 | for(unsigned i = 0; i < ctorCount; i++){ |
| 110 | _ctors_start[i](); |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | extern "C" |
| 115 | [[noreturn]] void kmain(multiboot2_info_header_t* mb_info){ |