diff options
-rw-r--r-- | os/common/startup/e200/compilers/GHS/ld/SPC56EC74.ld | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/os/common/startup/e200/compilers/GHS/ld/SPC56EC74.ld b/os/common/startup/e200/compilers/GHS/ld/SPC56EC74.ld index 90b831629..1023afebc 100644 --- a/os/common/startup/e200/compilers/GHS/ld/SPC56EC74.ld +++ b/os/common/startup/e200/compilers/GHS/ld/SPC56EC74.ld @@ -32,14 +32,13 @@ SECTIONS {
__ivpr_base__ = .;
*(.boot)
+ *(.handlers)
+ *(.crt0)
} > flash
- .boot1 ALIGN(16) :
+ .vectors ALIGN(0x800) :
{
- *(.handlers)
- *(.crt0)
/* The vectors table requires a 2kB alignment.*/
- . = ALIGN(0x800);
*(.vectors)
} > flash
|