Changes in kernel/arch/arm32/src/context.S [e98f1c3e:9d58539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/src/context.S
re98f1c3e r9d58539 27 27 # 28 28 29 #include <abi/asmtool.h>30 31 29 .text 32 30 33 FUNCTION_BEGIN(context_save_arch) 31 .global context_save_arch 32 .global context_restore_arch 33 34 context_save_arch: 34 35 stmfd sp!, {r1} 35 36 mrs r1, cpsr … … 43 44 mov r0, #1 44 45 mov pc, lr 45 FUNCTION_END(context_save_arch)46 46 47 FUNCTION_BEGIN(context_restore_arch) 47 48 context_restore_arch: 48 49 ldmia r0!, {r4} 49 50 mrs r5, cpsr … … 57 58 mov r0, #0 58 59 mov pc, lr 59 FUNCTION_END(context_restore_arch)
Note:
See TracChangeset
for help on using the changeset viewer.