Changes in uspace/lib/c/arch/arm32/src/fibril.S [73b3ecd:31e6aa7] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/arm32/src/fibril.S
r73b3ecd r31e6aa7 27 27 # 28 28 29 #include <abi/asmtool.h>30 31 29 .text 32 30 33 FUNCTION_BEGIN(context_save) 31 .global context_save 32 .global context_restore 33 34 context_save: 34 35 stmia r0!, {sp, lr} 35 36 stmia r0!, {r4-r11} … … 38 39 mov r0, #1 39 40 mov pc, lr 40 FUNCTION_END(context_save)41 41 42 FUNCTION_BEGIN(context_restore) 42 context_restore: 43 43 ldmia r0!, {sp, lr} 44 44 ldmia r0!, {r4-r11} … … 47 47 mov r0, #0 48 48 mov pc, lr 49 FUNCTION_END(context_restore)50 49
Note:
See TracChangeset
for help on using the changeset viewer.