boucane/src/boucane.cc

19 lines
349 B
C++
Raw Normal View History

2021-04-21 12:23:54 +02:00
#include "boucane.hpp"
2021-04-21 13:18:01 +02:00
#include "libs/string.hpp"
2021-04-21 12:23:54 +02:00
extern "C" void boucane(){
clear();
char a[]="Loic Guegan";
printk("Booting Boucane v%d.%d.%d",VERSION_MAJOR,VERSION_MINOR, VERSION_PATH);
2021-04-21 13:18:01 +02:00
char b[10];
substr(8, 9, a, b);
print("\n");
printk(b);
2021-04-21 12:23:54 +02:00
2021-04-21 13:18:01 +02:00
int gg=0;
gg+=((1>2) ? 1 : 0)+9;
printi(gg);
2021-04-21 12:23:54 +02:00
while(1);
}