Changes in boot/arch/sparc32/src/asm.S [208b5f5:38ad239] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/sparc32/src/asm.S
r208b5f5 r38ad239 27 27 # 28 28 29 #include <abi/asmtool.h> 29 30 #include <arch/arch.h> 30 31 31 32 .section BOOTSTRAP 32 33 33 .global start 34 .global boot_pt 35 .global boot_ctx_table 36 .global boot_stack 37 .global halt 38 .global jump_to_kernel 39 40 start: 34 SYMBOL(start) 41 35 b bootstrap 42 36 nop … … 44 38 .section BOOTPT 45 39 .align 4096 46 boot_pt: 40 SYMBOL(boot_pt) 47 41 .space PTL0_ENTRIES * PTL0_ENTRY_SIZE 48 42 49 boot_ctx_table: 43 SYMBOL(boot_ctx_table) 50 44 .space 4 51 45 52 46 .section BOOTSTACK 53 47 .space 4096 54 boot_stack: 48 SYMBOL(boot_stack) 55 49 56 50 .text 57 51 58 halt: 52 FUNCTION_BEGIN(halt) 59 53 b halt 60 54 nop 55 FUNCTION_END(halt) 61 56 62 jump_to_kernel: 57 FUNCTION_BEGIN(jump_to_kernel) 63 58 set 0x80a00000, %l0 64 59 mov %i1, %o0 65 60 jmp %l0 66 61 nop 62 FUNCTION_END(jump_to_kernel)
Note:
See TracChangeset
for help on using the changeset viewer.