git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8516 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
4d483752a8
commit
5128c31755
|
@ -73,20 +73,21 @@ SECTIONS
|
||||||
|
|
||||||
.code (VLECODE) ALIGN(16):
|
.code (VLECODE) ALIGN(16):
|
||||||
{
|
{
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text_vle)
|
*(.text_vle)
|
||||||
}
|
}
|
||||||
|
|
||||||
.const (CONST) ALIGN(16):
|
.const (CONST) ALIGN(16):
|
||||||
{
|
{
|
||||||
*(.rodata)
|
*(.rdata)
|
||||||
|
*(.rodata)
|
||||||
}
|
}
|
||||||
|
|
||||||
.sdata2 (CONST) ALIGN(16):
|
.sdata2 (CONST) ALIGN(16):
|
||||||
{
|
{
|
||||||
__sdata2_start__ = . + 0x8000;
|
__sdata2_start__ = . + 0x8000;
|
||||||
*(.sdata2)
|
*(.sdata2)
|
||||||
*(.sbss2)
|
*(.sbss2)
|
||||||
}
|
}
|
||||||
|
|
||||||
.ctors: {}
|
.ctors: {}
|
||||||
|
@ -98,7 +99,7 @@ SECTIONS
|
||||||
|
|
||||||
GROUP:
|
GROUP:
|
||||||
{
|
{
|
||||||
.stacks (BSS) ALIGN(16):
|
.stacks:
|
||||||
{
|
{
|
||||||
. = ALIGN(8);
|
. = ALIGN(8);
|
||||||
__irq_stack_base__ = .;
|
__irq_stack_base__ = .;
|
||||||
|
@ -113,27 +114,27 @@ SECTIONS
|
||||||
__main_thread_stack_end__ = .;
|
__main_thread_stack_end__ = .;
|
||||||
}
|
}
|
||||||
|
|
||||||
.data:
|
.data (DATA):
|
||||||
{
|
{
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
__data_start__ = .;
|
__data_start__ = .;
|
||||||
*(.data)
|
*(.data)
|
||||||
}
|
}
|
||||||
|
|
||||||
.sdata:
|
.sdata (DATA):
|
||||||
{
|
{
|
||||||
__sdata_start__ = . + 0x8000;
|
__sdata_start__ = . + 0x8000;
|
||||||
*(.sdata)
|
*(.sdata)
|
||||||
__data_end__ = .;
|
__data_end__ = .;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sbss:
|
.sbss (BSS):
|
||||||
{
|
{
|
||||||
__bss_start__ = .;
|
__bss_start__ = .;
|
||||||
*(.sbss)
|
*(.sbss)
|
||||||
}
|
}
|
||||||
|
|
||||||
.bss:
|
.bss (BSS):
|
||||||
{
|
{
|
||||||
*(.bss)
|
*(.bss)
|
||||||
__bss_end__ = .;
|
__bss_end__ = .;
|
||||||
|
|
Loading…
Reference in New Issue