Always include the .csstart section in RL78 executables.
* rl78/rl78.ld (.csstart): Add a KEEP directive. * rl78/rl78-sim.ld (.csstart): Add a KEEP directive.
This commit is contained in:
parent
84b8db8e7a
commit
61a2d9dedb
|
@ -1,3 +1,8 @@
|
|||
2015-04-07 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* rl78/rl78.ld (.csstart): Add a KEEP directive.
|
||||
* rl78/rl78-sim.ld (.csstart): Add a KEEP directive.
|
||||
|
||||
2015-03-05 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* v850/sim.ld: Add a .note.renesas section.
|
||||
|
|
|
@ -66,7 +66,7 @@ SECTIONS
|
|||
|
||||
/* CubeSuite always starts at 0xd8. */
|
||||
.csstart : {
|
||||
*(.csstart)
|
||||
KEEP (*(.csstart))
|
||||
} > ROM
|
||||
|
||||
/* For code that must be in the first 64k, or could fill unused
|
||||
|
|
|
@ -66,7 +66,7 @@ SECTIONS
|
|||
|
||||
/* CubeSuite always starts at 0xd8. */
|
||||
.csstart : {
|
||||
*(.csstart)
|
||||
KEEP (*(.csstart))
|
||||
} > ROM
|
||||
|
||||
/* For code that must be in the first 64k, or could fill unused
|
||||
|
|
Loading…
Reference in New Issue