diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-12-05 13:55:21 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-12-05 13:55:21 +0000 |
commit | 345779a579448b3a799d5a8c8978530cef1a807f (patch) | |
tree | 6af1179bc09bebfa3907975fbad0d6b369adb8b2 /os | |
parent | 62e068f5f48a08c57191f37313abc0011a5ee63c (diff) | |
download | ChibiOS-345779a579448b3a799d5a8c8978530cef1a807f.tar.gz ChibiOS-345779a579448b3a799d5a8c8978530cef1a807f.tar.bz2 ChibiOS-345779a579448b3a799d5a8c8978530cef1a807f.zip |
Fixed one GHS port problem, there are more.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11119 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-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
|