diff options
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/target/arm/crt0.S | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/firmware/target/arm/crt0.S b/firmware/target/arm/crt0.S index f52056617a..3765df9ffc 100644 --- a/firmware/target/arm/crt0.S +++ b/firmware/target/arm/crt0.S @@ -26,6 +26,13 @@ .global start start: /* Exception vectors */ + + /* + * reset vector *MUST* use relative-addressing only + * the MMU might not be enabled yet, and the PC might point to + * a memory region not present in the linked binary + */ + b newstart b undef_instr_handler b software_int_handler |