boucane/src/boucane.cc

10 lines
215 B
C++
Raw Normal View History

2021-04-21 12:23:54 +02:00
#include "boucane.hpp"
2021-04-21 18:54:50 +02:00
#include "core/idt.hpp"
2021-04-21 12:23:54 +02:00
extern "C" void boucane(){
clear();
printk("Booting Boucane v%d.%d.%d",VERSION_MAJOR,VERSION_MINOR, VERSION_PATH);
2021-04-21 18:54:50 +02:00
idt_enable_interrupt();
2021-04-21 12:23:54 +02:00
while(1);
}