Skip to content
Snippets Groups Projects
Commit 251b8f97 authored by patacongo's avatar patacongo
Browse files

Fix another jmp vs rjmp in vector table

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3709 42af7a65-404d-4744-a932-0658087f49c3
parent 790d8ad7
No related branches found
No related tags found
No related merge requests found
......@@ -133,7 +133,7 @@
.section .vectors, "ax", @progbits
.func vectortab
vectortab:
jmp __start /* 0: Vector 0 is the reset vector */
rjmp __start /* 0: Vector 0 is the reset vector */
vector at90usb_int0 /* 1: External interrupt request 0 */
vector at90usb_int1 /* 2: External interrupt request 1 */
vector at90usb_int2 /* 3: External interrupt request 2 */
......
......@@ -130,7 +130,7 @@
.section .vectors, "ax", @progbits
.func vectortab
vectortab:
jmp __start /* 0: Vector 0 is the reset vector */
rjmp __start /* 0: Vector 0 is the reset vector */
vector atmega_int0 /* 1: External interrupt request 0 */
vector atmega_int1 /* 2: External interrupt request 1 */
vector atmega_int2 /* 3: External interrupt request 2 */
......
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