Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/mips32/src/start.S

    r0407636 r33add3a8  
    2727#
    2828
    29 #include <abi/asmtool.h>
    3029#include <arch/asm/regname.h>
    3130#include <arch/mm/page.h>
     
    3938.set noreorder
    4039.set nomacro
     40
     41.global kernel_image_start
     42.global tlb_refill_entry
     43.global cache_error_entry
     44.global exception_entry
     45.global userspace_asm
    4146
    4247/*
     
    187192
    188193.org 0x0
    189 SYMBOL(kernel_image_start)
     194kernel_image_start:
    190195        /* load temporary stack */
    191196        lui $sp, %hi(end_stack)
     
    205210end_stack:
    206211
    207 SYMBOL(tlb_refill_entry)
     212tlb_refill_entry:
    208213        j tlb_refill_handler
    209214        nop
    210215
    211 SYMBOL(cache_error_entry)
     216cache_error_entry:
    212217        j cache_error_handler
    213218        nop
    214219
    215 SYMBOL(exception_entry)
     220exception_entry:
    216221        j exception_handler
    217222        nop
     
    340345        eret
    341346
    342 FUNCTION_BEGIN(userspace_asm)
     347userspace_asm:
    343348        move $sp, $a0
    344349        move $v0, $a1
     
    347352                           /* set it to 0 */
    348353        eret
    349 FUNCTION_END(userspace_asm)
Note: See TracChangeset for help on using the changeset viewer.