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:
Angus Gratton 2015-08-06 09:54:46 +10:00
parent 5f82b3c27f
commit bed6907d22

View file

@ -17,7 +17,7 @@
*/
.text
.section .vecbase.text, "x"
.align 128
.align 256
.global VecBase
.type VecBase, @function /* it's not really a function, but treat it like one */
VecBase: