Changes in uspace/lib/c/arch/mips32/src/fibril.S [0407636:4b334fd6] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/mips32/src/fibril.S
r0407636 r4b334fd6 32 32 .set noreorder 33 33 34 #include <abi/asmtool.h>35 34 #include <libarch/fibril_context.h> 36 35 37 FUNCTION_BEGIN(context_save) 36 .global context_save 37 .global context_restore 38 39 context_save: 38 40 sw $s0, CONTEXT_OFFSET_S0($a0) 39 41 sw $s1, CONTEXT_OFFSET_S1($a0) … … 90 92 j $ra 91 93 li $v0, 1 92 FUNCTION_END(context_save)93 94 94 FUNCTION_BEGIN(context_restore) 95 context_restore: 95 96 lw $s0, CONTEXT_OFFSET_S0($a0) 96 97 lw $s1, CONTEXT_OFFSET_S1($a0) … … 150 151 j $ra 151 152 xor $v0, $v0 152 FUNCTION_END(context_restore)
Note:
See TracChangeset
for help on using the changeset viewer.