mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
21 lines
195 B
C
21 lines
195 B
C
#if USE_LIBA
|
|
#include <liba.h>
|
|
#endif
|
|
|
|
#if USE_ION
|
|
#include <ion.h>
|
|
#endif
|
|
|
|
#include <src/hello.h>
|
|
|
|
void boot() {
|
|
#if USE_LIBA
|
|
liba_init();
|
|
#endif
|
|
#if USE_ION
|
|
ion_ini();
|
|
#endif
|
|
|
|
hello();
|
|
}
|