19 lines
No EOL
349 B
C++
19 lines
No EOL
349 B
C++
#include "boucane.hpp"
|
|
#include "libs/string.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);
|
|
|
|
while(1);
|
|
} |