blob: 3901e85754cf7a2f1431a86864cfd563d7f83c75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* Copyright (c) 2022, Arm Limited. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*
*/
#ifndef __CMSIS_OVERRIDE_H__
#define __CMSIS_OVERRIDE_H__
#if defined(__GNUC__)
#define __INITIAL_SP Image$$ARM_LIB_STACK$$ZI$$Limit
#define __STACK_LIMIT Image$$ARM_LIB_STACK$$ZI$$Base
#elif defined(__ICCARM__)
#define __INITIAL_SP ARM_LIB_STACK$$Limit
#define __STACK_LIMIT ARM_LIB_STACK$$Base
#endif
#endif /* __CMSIS_OVERRIDE_H__ */
|