1 /*
2  * Copyright (c) 2015 Travis Geiselbrecht
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 #include <lk/trace.h>
9 #include <lk/err.h>
10 #include <lk/debug.h>
11 #include <arch/or1k.h>
12 #include <arch/ops.h>
13 #include <arch/mmu.h>
14 
arch_early_init(void)15 void arch_early_init(void) {
16 }
17 
arch_init(void)18 void arch_init(void) {
19     TRACE;
20 }
21 
arch_idle(void)22 void arch_idle(void) {
23 }
24 
arch_chain_load(void * entry,ulong arg0,ulong arg1,ulong arg2,ulong arg3)25 void arch_chain_load(void *entry, ulong arg0, ulong arg1, ulong arg2, ulong arg3) {
26     PANIC_UNIMPLEMENTED;
27 }
28