Ignore:
File:
1 edited

Legend:

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

    rb66cc97 r9d58539  
    2727#
    2828
    29 #include <abi/asmtool.h>
    3029#include <arch/arch.h>
    3130#include <arch/regname.h>
     
    105104.endm
    106105
     106.global start
     107.global halt
     108.global jump_to_kernel
     109.global real_mode
     110
    107111.section BOOTSTRAP, "ax"
    108112
    109 SYMBOL(start)
     113start:
    110114        lis r4, ofw_cif@ha
    111115        addi r4, r4, ofw_cif@l
     
    117121.text
    118122
    119 FUNCTION_BEGIN(halt)
     123halt:
    120124        b halt
    121 FUNCTION_END(halt)
    122 
    123 FUNCTION_BEGIN(jump_to_kernel)
     125
     126jump_to_kernel:
     127       
    124128        # arguments:
    125129        # r3 = bootinfo (physical address)
     
    149153        isync
    150154        rfi
    151 FUNCTION_END(jump_to_kernel)
    152155
    153156.section REALMODE, "ax"
    154157
    155158.align PAGE_WIDTH
    156 SYMBOL(real_mode)
     159real_mode:
    157160       
    158161        # arguments:
Note: See TracChangeset for help on using the changeset viewer.