git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5109 35acf78f-673a-0410-8e92-d51de3d6d3f4
parent
3950ddaed2
commit
6d58b61eca
|
@ -46,17 +46,12 @@ SECTIONS
|
|||
. = ORIGIN(flash);
|
||||
.boot : ALIGN(16) SUBALIGN(16)
|
||||
{
|
||||
__ivpr_base__ = .;
|
||||
KEEP(*(.bam))
|
||||
KEEP(*(.crt0))
|
||||
. = ALIGN(0x00000800);
|
||||
KEEP(*(.vectors))
|
||||
/* Note, have to waste the first 64KB because the IVPR register
|
||||
requires an alignment of 64KB and the first 64KB cannot be used,
|
||||
IVOR0 would conflict with the BAM word. Applications could
|
||||
allocate code or data in the first 64KB by using special sections.*/
|
||||
. = ALIGN(0x00010000);
|
||||
__ivpr_base__ = .;
|
||||
KEEP(*(.handlers))
|
||||
. = ALIGN(0x800);
|
||||
KEEP(*(.vectors))
|
||||
} > flash
|
||||
|
||||
constructors : ALIGN(4) SUBALIGN(4)
|
||||
|
|
|
@ -46,17 +46,12 @@ SECTIONS
|
|||
. = ORIGIN(flash);
|
||||
.boot : ALIGN(16) SUBALIGN(16)
|
||||
{
|
||||
__ivpr_base__ = .;
|
||||
KEEP(*(.bam))
|
||||
KEEP(*(.crt0))
|
||||
. = ALIGN(0x00000800);
|
||||
KEEP(*(.vectors))
|
||||
/* Note, have to waste the first 64KB because the IVPR register
|
||||
requires an alignment of 64KB and the first 64KB cannot be used,
|
||||
IVOR0 would conflict with the BAM word. Applications could
|
||||
allocate code or data in the first 64KB by using special sections.*/
|
||||
. = ALIGN(0x00010000);
|
||||
__ivpr_base__ = .;
|
||||
KEEP(*(.handlers))
|
||||
. = ALIGN(0x800);
|
||||
KEEP(*(.vectors))
|
||||
} > flash
|
||||
|
||||
constructors : ALIGN(4) SUBALIGN(4)
|
||||
|
|
|
@ -46,17 +46,12 @@ SECTIONS
|
|||
. = ORIGIN(flash);
|
||||
.boot : ALIGN(16) SUBALIGN(16)
|
||||
{
|
||||
__ivpr_base__ = .;
|
||||
KEEP(*(.bam))
|
||||
KEEP(*(.crt0))
|
||||
. = ALIGN(0x00000800);
|
||||
KEEP(*(.vectors))
|
||||
/* Note, have to waste the first 64KB because the IVPR register
|
||||
requires an alignment of 64KB and the first 64KB cannot be used,
|
||||
IVOR0 would conflict with the BAM word. Applications could
|
||||
allocate code or data in the first 64KB by using special sections.*/
|
||||
. = ALIGN(0x00010000);
|
||||
__ivpr_base__ = .;
|
||||
KEEP(*(.handlers))
|
||||
. = ALIGN(0x800);
|
||||
KEEP(*(.vectors))
|
||||
} > flash
|
||||
|
||||
constructors : ALIGN(4) SUBALIGN(4)
|
||||
|
|
Loading…
Reference in New Issue