diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-05-05 23:19:42 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-05-05 23:19:42 +0300 |
| commit | 5fb1af3ab12880331fb1e2150aa23b1278e60ddd (patch) | |
| tree | 3e905ee027369f01611edbc1b1a1a00e9a30dc41 /common/main.c | |
| parent | 9273c16434316a8ab60dc78ee65a03e68031203a (diff) | |
| download | kmi-5fb1af3ab12880331fb1e2150aa23b1278e60ddd.tar.gz kmi-5fb1af3ab12880331fb1e2150aa23b1278e60ddd.zip | |
riscv64 boots with clang (sort of)
Diffstat (limited to 'common/main.c')
| -rw-r--r-- | common/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/main.c b/common/main.c index 0e33ecc..7168aeb 100644 --- a/common/main.c +++ b/common/main.c @@ -1,4 +1,5 @@ #include <apos/mem_nodes.h> +#include <apos/timer.h> #include <apos/attrs.h> #include <apos/proc.h> #include <apos/debug.h> @@ -23,5 +24,6 @@ void __main main(void *fdt) setup_io_dbg(b); init_irq(fdt); + init_timer(fdt); init_proc(fdt, b); } |
