File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
targets/TARGET_Realtek/TARGET_AMEBA/TARGET_RTL8195A/device Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -162,21 +162,21 @@ SECTIONS
162
162
163
163
.bss.sram1 (NOLOAD) :
164
164
{
165
- __bss_sram1_start__ = .;
165
+ __bss_sram_start__ = .;
166
166
*rtl8195a_crypto.o (.bss* COMMON)
167
167
*mbedtls*.o (.bss* COMMON)
168
168
*(.bss.thread_stack_main)
169
- __bss_sram1_end__ = .;
169
+ __bss_sram_end__ = .;
170
170
} > SRAM1
171
171
172
172
.bss.sram2 (NOLOAD) :
173
173
{
174
174
__bss_start__ = .;
175
- __bss_sram2_start__ = .;
175
+ __bss_dram_start__ = .;
176
176
*(.bss*)
177
177
*(COMMON)
178
178
*(.bdsram.data*)
179
- __bss_sram2_end__ = .;
179
+ __bss_dram_end__ = .;
180
180
__bss_end__ = .;
181
181
} > SRAM2
182
182
Original file line number Diff line number Diff line change @@ -54,10 +54,10 @@ void __iar_data_init_app(void)
54
54
#else
55
55
56
56
extern uint32_t __StackTop ;
57
- extern uint8_t __bss_sram1_start__ [];
58
- extern uint8_t __bss_sram1_end__ [];
59
- extern uint8_t __bss_sram2_start__ [];
60
- extern uint8_t __bss_sram2_end__ [];
57
+ extern uint8_t __bss_sram_start__ [];
58
+ extern uint8_t __bss_sram_end__ [];
59
+ extern uint8_t __bss_dram_start__ [];
60
+ extern uint8_t __bss_dram_end__ [];
61
61
62
62
#endif
63
63
You can’t perform that action at this time.
0 commit comments