Changes in boot/arch/mips32/src/asm.S [45f7449:0407636] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/mips32/src/asm.S
r45f7449 r0407636 27 27 # 28 28 29 #include <abi/asmtool.h> 29 30 #include <arch/arch.h> 30 31 #include <arch/regname.h> … … 34 35 .set nomacro 35 36 36 .global start37 .global halt38 .global jump_to_kernel39 40 37 .section BOOTSTRAP 41 38 42 start: 39 SYMBOL(start) 43 40 /* 44 41 * Setup the CP0 configuration … … 145 142 .text 146 143 147 halt: 144 FUNCTION_BEGIN(halt) 148 145 j halt 149 146 nop 147 FUNCTION_END(halt) 150 148 151 jump_to_kernel: 149 FUNCTION_BEGIN(jump_to_kernel) 152 150 /* 153 151 * TODO: … … 158 156 j $a0 159 157 nop 158 FUNCTION_END(jump_to_kernel)
Note:
See TracChangeset
for help on using the changeset viewer.