software/bios: place eos s3 interrupt table at .text start when present
This commit is contained in:
parent
15a927bcc8
commit
00dfaa1740
|
@ -8,6 +8,9 @@ SECTIONS
|
||||||
.text :
|
.text :
|
||||||
{
|
{
|
||||||
_ftext = .;
|
_ftext = .;
|
||||||
|
/* Quicklogic EOS-S3 interrupt vector table uses section name "isr_vector" */
|
||||||
|
/* ARM table has to be placed at start */
|
||||||
|
KEEP(*(.isr_vector))
|
||||||
/* Make sure crt0 files come first, and they, and the isr */
|
/* Make sure crt0 files come first, and they, and the isr */
|
||||||
/* don't get disposed of by greedy optimisation */
|
/* don't get disposed of by greedy optimisation */
|
||||||
*crt0*(.text)
|
*crt0*(.text)
|
||||||
|
|
Loading…
Reference in New Issue