1 /*
2  * Copyright (c) 2019 Elliot Berman
3  *
4  * Use of this source code is governed by a MIT-style
5  * license that can be found in the LICENSE file or at
6  * https://opensource.org/licenses/MIT
7  */
8 
9 #include <target.h>
10 #include <arch/arch_ops.h>
11 #include <platform/sifive.h>
12 
target_early_init(void)13 void target_early_init(void) {
14 }
15 
target_init(void)16 void target_init(void) {
17 }
18 
19 
20 
21