Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
02/26/00 20:40
Read: times


 
#1604 - RE: Branch


Martin Lepianka wrote:
-------------------------------
The technical sheets say that a typical program setup for the interupts and vector adresses are:

$000 rjmp RESET ;Reset Handler
$001 rjmp EXT_INT0 ;EXT_IRQHandler
.
.
.
Why does the rjmp operation have no operand for it, next to it, like in jmp $0000 0000 0011?

Because you have a relocatable assembler, and the code will jump to a label "RESET" in your code.

Not knowing your CPU, I cannot help much more I'm afraid, but you MUST have SHORT jump to your first bits of code. You can't put code there at all.

Steve

List of 6 messages in thread
TopicAuthorDate
Branch            01/01/70 00:00      
RE: Branch            01/01/70 00:00      
RE: Branch            01/01/70 00:00      
RE: Branch            01/01/70 00:00      
RE: Branch            01/01/70 00:00      
RE: Branch            01/01/70 00:00      

Back to Subject List