diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2021-04-21 18:54:50 +0200 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2021-04-21 18:54:50 +0200 |
| commit | 99019721a9e147c49becc466c5427609b937aca8 (patch) | |
| tree | 3b187d90bdb606a9c27760cd6e187aeb995fd956 /src/boucane.cc | |
| parent | 2f712d027b38bebd571e4fa673f0d642b59e3c98 (diff) | |
Enable interrupts
Diffstat (limited to 'src/boucane.cc')
| -rw-r--r-- | src/boucane.cc | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/src/boucane.cc b/src/boucane.cc index 94f266f..8baa1ba 100644 --- a/src/boucane.cc +++ b/src/boucane.cc @@ -1,19 +1,10 @@ #include "boucane.hpp" -#include "libs/string.hpp" +#include "core/idt.hpp" extern "C" void boucane(){ clear(); - char a[]="Loic Guegan"; printk("Booting Boucane v%d.%d.%d",VERSION_MAJOR,VERSION_MINOR, VERSION_PATH); - - char b[10]; - substr(8, 9, a, b); - print("\n"); - printk(b); - - int gg=0; - gg+=((1>2) ? 1 : 0)+9; - printi(gg); + idt_enable_interrupt(); while(1); }
\ No newline at end of file |
