bringelle/src/bringelle.c

11 lines
127 B
C
Raw Normal View History

2021-04-04 11:19:55 +02:00
#include "utils/print.h"
#include "utils/asm.h"
2021-04-04 11:19:55 +02:00
void bringelle(){
2021-04-04 14:03:26 +02:00
clear();
print("Booting Bringelle...");
2021-04-04 11:19:55 +02:00
2021-04-04 11:19:55 +02:00
while(1);
}