Exception vector address must be 256 byte aligned
Not actually a problem with the current linker script as the address is predetermined there at start of IRAM, but might as well be accurate about it. As per advice from @foogod on esp8266-re mailing list: https://groups.google.com/d/msg/esp8266-re/1ljIY3Zttbo/HvzHSWOLCgAJ
This commit is contained in:
parent
5f82b3c27f
commit
bed6907d22
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@
|
||||||
*/
|
*/
|
||||||
.text
|
.text
|
||||||
.section .vecbase.text, "x"
|
.section .vecbase.text, "x"
|
||||||
.align 128
|
.align 256
|
||||||
.global VecBase
|
.global VecBase
|
||||||
.type VecBase, @function /* it's not really a function, but treat it like one */
|
.type VecBase, @function /* it's not really a function, but treat it like one */
|
||||||
VecBase:
|
VecBase:
|
||||||
|
|
Loading…
Reference in a new issue