git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5268 35acf78f-673a-0410-8e92-d51de3d6d3f4
parent
135af75414
commit
446071f64f
|
@ -146,7 +146,7 @@ _ivinit:
|
|||
|
||||
blr
|
||||
|
||||
.section .handlers, "ax"
|
||||
.section .ivors, "ax"
|
||||
|
||||
.globl IVORS
|
||||
IVORS:
|
||||
|
@ -182,6 +182,8 @@ IVOR14: b _IVOR14
|
|||
.align 4
|
||||
IVOR15: b _IVOR15
|
||||
|
||||
.section .handlers, "ax"
|
||||
|
||||
/*
|
||||
* Unhandled exceptions handler.
|
||||
*/
|
||||
|
|
|
@ -49,6 +49,7 @@ SECTIONS
|
|||
{
|
||||
KEEP(*(.bam))
|
||||
KEEP(*(.coreinit))
|
||||
KEEP(*(.handlers))
|
||||
KEEP(*(.crt0))
|
||||
. = ALIGN(0x00000800);
|
||||
KEEP(*(.vectors))
|
||||
|
@ -58,7 +59,7 @@ SECTIONS
|
|||
allocate code or data in the first 4KB by using special sections.*/
|
||||
. = ALIGN(0x00001000);
|
||||
__ivpr_base__ = .;
|
||||
KEEP(*(.handlers))
|
||||
KEEP(*(.ivors))
|
||||
} > flash
|
||||
|
||||
constructors : ALIGN(4) SUBALIGN(4)
|
||||
|
|
|
@ -49,6 +49,7 @@ SECTIONS
|
|||
{
|
||||
KEEP(*(.bam))
|
||||
KEEP(*(.coreinit))
|
||||
KEEP(*(.handlers))
|
||||
KEEP(*(.crt0))
|
||||
. = ALIGN(0x00000800);
|
||||
KEEP(*(.vectors))
|
||||
|
@ -58,7 +59,7 @@ SECTIONS
|
|||
allocate code or data in the first 4KB by using special sections.*/
|
||||
. = ALIGN(0x00001000);
|
||||
__ivpr_base__ = .;
|
||||
KEEP(*(.handlers))
|
||||
KEEP(*(.ivors))
|
||||
} > flash
|
||||
|
||||
constructors : ALIGN(4) SUBALIGN(4)
|
||||
|
|
|
@ -146,7 +146,7 @@ _ivinit:
|
|||
|
||||
blr
|
||||
|
||||
.section .handlers, "ax"
|
||||
.section .ivors, "ax"
|
||||
|
||||
.globl IVORS
|
||||
IVORS:
|
||||
|
@ -182,6 +182,8 @@ IVOR14: b _IVOR14
|
|||
.align 4
|
||||
IVOR15: b _IVOR15
|
||||
|
||||
.section .handlers, "ax"
|
||||
|
||||
/*
|
||||
* Unhandled exceptions handler.
|
||||
*/
|
||||
|
|
|
@ -49,6 +49,7 @@ SECTIONS
|
|||
{
|
||||
KEEP(*(.bam))
|
||||
KEEP(*(.coreinit))
|
||||
KEEP(*(.handlers))
|
||||
KEEP(*(.crt0))
|
||||
. = ALIGN(0x00000800);
|
||||
KEEP(*(.vectors))
|
||||
|
@ -58,7 +59,7 @@ SECTIONS
|
|||
allocate code or data in the first 64KB by using special sections.*/
|
||||
. = ALIGN(0x00010000);
|
||||
__ivpr_base__ = .;
|
||||
KEEP(*(.handlers))
|
||||
KEEP(*(.ivors))
|
||||
} > flash
|
||||
|
||||
constructors : ALIGN(4) SUBALIGN(4)
|
||||
|
|
|
@ -49,6 +49,7 @@ SECTIONS
|
|||
{
|
||||
KEEP(*(.bam))
|
||||
KEEP(*(.coreinit))
|
||||
KEEP(*(.handlers))
|
||||
KEEP(*(.crt0))
|
||||
. = ALIGN(0x00000800);
|
||||
KEEP(*(.vectors))
|
||||
|
@ -58,7 +59,7 @@ SECTIONS
|
|||
allocate code or data in the first 64KB by using special sections.*/
|
||||
. = ALIGN(0x00010000);
|
||||
__ivpr_base__ = .;
|
||||
KEEP(*(.handlers))
|
||||
KEEP(*(.ivors))
|
||||
} > flash
|
||||
|
||||
constructors : ALIGN(4) SUBALIGN(4)
|
||||
|
|
|
@ -176,6 +176,8 @@ _ivinit:
|
|||
|
||||
blr
|
||||
|
||||
.section .handlers, "ax"
|
||||
|
||||
/*
|
||||
* Unhandled exceptions handler.
|
||||
*/
|
||||
|
|
|
@ -505,6 +505,8 @@ _ivinit:
|
|||
|
||||
blr
|
||||
|
||||
.section .handlers, "ax"
|
||||
|
||||
/*
|
||||
* Unhandled exceptions handler.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue