mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 20:55:17 -05:00
mips: Use a separate IRQ stack & optimize IRQ handling a little
Should prevent the IRQ-related stack overflows seen on MIPS targets. Change-Id: I447336ef3fe37e11b3276a78ba220ce64c2f87f5
This commit is contained in:
parent
5e8db1662b
commit
36a50dd00f
3 changed files with 60 additions and 38 deletions
|
|
@ -83,6 +83,9 @@ SECTIONS
|
|||
stackbegin = .;
|
||||
. += 0x2000;
|
||||
stackend = .;
|
||||
irqstackbegin = .;
|
||||
. += 0x400;
|
||||
irqstackend = .;
|
||||
} > IRAM
|
||||
|
||||
.bss (NOLOAD):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue