blob: 8baa1ba1b550e66c24987d24749faeb40ef6214d (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "boucane.hpp"
#include "core/idt.hpp"
extern "C" void boucane(){
clear();
printk("Booting Boucane v%d.%d.%d",VERSION_MAJOR,VERSION_MINOR, VERSION_PATH);
idt_enable_interrupt();
while(1);
}
|