forked from len0rd/rockbox
arm/crt0.S: comment why the reset vector doesn't use absolute addressing
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26929 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
b3e27a80e3
commit
3e690ac60d
1 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue