mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-20 04:33:32 +08:00
90917cc75a
* [dfs] fixup compiler warning Signed-off-by: Shell <smokewood@qq.com> * [format] libcpu/arm64: separate context switching codes Signed-off-by: Shell <smokewood@qq.com> * [format] libcpu/arm64: separate vector Signed-off-by: Shell <smokewood@qq.com> * [format] libcpu/arm64: separate context_gcc.S Signed-off-by: Shell <smokewood@qq.com> * [format] libcpu/arm64: moving headers to include directory Signed-off-by: Shell <smokewood@qq.com> * style: replace tab with space --------- Signed-off-by: Shell <smokewood@qq.com>
19 lines
284 B
ArmAsm
19 lines
284 B
ArmAsm
/*
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
*/
|
|
|
|
.global Reset_Handler
|
|
.section ".start", "ax"
|
|
Reset_Handler:
|
|
nop
|
|
|
|
.text
|
|
.weak SVC_Handler
|
|
SVC_Handler:
|
|
ret
|