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

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
08/06/02 06:09
Read: times


 
#26781 - RE: Dummie Question to Interrupts
Hi Peter,

it depends only, which registers are used inside the interrupt.

And sometimes no register must be pushed, e.g. on using such instructions like INC, DEC, DJNZ, JNB, JBC, SETB, JMP, MOV, ...

Special care must be taken to the PSW register, e.g. CJNE can change it.

Following an example to increment a 16 bit value inside a timer interrupt:
<pre>
t0_int:
inc timer_b0
inc timer_b0
djnz timer_b0, t0_int1
inc timer_b1
t0_int1:
reti

Peter


List of 6 messages in thread
TopicAuthorDate
Dummie Question to Interrupts            01/01/70 00:00      
RE: Dummie Question to Interrupts            01/01/70 00:00      
RE: Dummie Question to Interrupts            01/01/70 00:00      
RE: Dummie Question to Interrupts            01/01/70 00:00      
RE: Dummie Question to Interrupts            01/01/70 00:00      
RE: Dummie Question to Interrupts            01/01/70 00:00      

Back to Subject List