Skip to content
Snippets Groups Projects
Unverified Commit dc45c4d6 authored by CNLohr's avatar CNLohr Committed by GitHub
Browse files

Merge pull request #130 from cnlohr/boot_rvc_section_only

Only perform norvc for boot section only.  Sometimes this can be "lea…
parents 346a5d50 ee2f03f6
No related branches found
No related tags found
No related merge requests found
......@@ -720,6 +720,7 @@ void InterruptVectorDefault()
{
asm volatile( "\n\
.align 2\n\
.option push;\n\
.option norvc;\n\
j handle_reset\n\
.word 0\n\
......@@ -760,7 +761,8 @@ void InterruptVectorDefault()
.word TIM1_UP_IRQHandler /* TIM1 Update */ \n\
.word TIM1_TRG_COM_IRQHandler /* TIM1 Trigger and Commutation */ \n\
.word TIM1_CC_IRQHandler /* TIM1 Capture Compare */ \n\
.word TIM2_IRQHandler /* TIM2 */ \n");
.word TIM2_IRQHandler /* TIM2 */ \n\
.option pop;\n");
}
void handle_reset()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment