Hey Guys,
so I want to use the reset vector in my assembler-program to jump to a specific start-address after the reset. I use the following code to jump to "main", that is the start of my program (address in my case: 803E):
.section .resetvec,"ax",@progbits
.word main
The problem is, that their is no address shown at this section. I can see that in the disassembly:
0000807c <.resetvec>:
807c:
I expect the start-address 803E after the 807c:. Should'nt it be like that?
Any suggestions?