Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/ppc32/src/asm.S

    r9d58539 rb66cc97  
    2727#
    2828
     29#include <abi/asmtool.h>
    2930#include <arch/arch.h>
    3031#include <arch/regname.h>
     
    104105.endm
    105106
    106 .global start
    107 .global halt
    108 .global jump_to_kernel
    109 .global real_mode
    110 
    111107.section BOOTSTRAP, "ax"
    112108
    113 start:
     109SYMBOL(start)
    114110        lis r4, ofw_cif@ha
    115111        addi r4, r4, ofw_cif@l
     
    121117.text
    122118
    123 halt:
     119FUNCTION_BEGIN(halt)
    124120        b halt
    125 
    126 jump_to_kernel:
    127        
     121FUNCTION_END(halt)
     122
     123FUNCTION_BEGIN(jump_to_kernel)
    128124        # arguments:
    129125        # r3 = bootinfo (physical address)
     
    153149        isync
    154150        rfi
     151FUNCTION_END(jump_to_kernel)
    155152
    156153.section REALMODE, "ax"
    157154
    158155.align PAGE_WIDTH
    159 real_mode:
     156SYMBOL(real_mode)
    160157       
    161158        # arguments:
Note: See TracChangeset for help on using the changeset viewer.