mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
15 lines
156 B
C
15 lines
156 B
C
#if USE_LIBA
|
|
#include <liba.h>
|
|
#endif
|
|
|
|
#include <ion.h>
|
|
#include <src/hello.h>
|
|
|
|
void boot() {
|
|
#if USE_LIBA
|
|
liba_init();
|
|
#endif
|
|
ion_init();
|
|
hello();
|
|
}
|