Ignore:
File:
1 edited

Legend:

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

    r0407636 r33add3a8  
    2727#
    2828
    29 #include <abi/asmtool.h>
    3029#include <arch/context_struct.h>
    3130
     
    3635.set nomacro
    3736
    38 FUNCTION_BEGIN(context_save_arch)
     37.global context_save_arch
     38.global context_restore_arch
     39
     40context_save_arch:
    3941        sw $s0, CONTEXT_OFFSET_S0($a0)
    4042        sw $s1, CONTEXT_OFFSET_S1($a0)
     
    5456        j $31
    5557        li $2, 1
    56 FUNCTION_END(context_save_arch)
    5758
    58 FUNCTION_BEGIN(context_restore_arch)
     59context_restore_arch:
    5960        lw $s0, CONTEXT_OFFSET_S0($a0)
    6061        lw $s1, CONTEXT_OFFSET_S1($a0)
     
    7475        j $31
    7576        xor $2, $2
    76 FUNCTION_END(context_restore_arch)
Note: See TracChangeset for help on using the changeset viewer.