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

Back to Subject List

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


 
#29046 - RE: Question about software RTC tutorial
The tutorial assumes that no other interrupt sources will "fire".

Timer0 interrupt hardware auto-vectors to the fixed address 0003H. At 0003H you can put your entire 8-byte ISR (filling the range 03H-0AH) if it's that short, without risk of overwriting the code locations that will be automatically vectored to for INT1, Timer1, etc. Conventional practice in a multi-interrupt environment is to have either an interrupt-quiescing stub of some sort or a jump (SJMP or LJMP) to the "real" ISR at the interrupt vector locations. These short instuction sequences avoid overwriting the space allocated to the other interrupts.

List of 7 messages in thread
TopicAuthorDate
Question about software RTC tutorial            01/01/70 00:00      
RE: Question about software RTC tutorial            01/01/70 00:00      
RE: Question about software RTC tutorial            01/01/70 00:00      
RE: Question about software RTC tutorial            01/01/70 00:00      
RE: Question about software RTC tutorial            01/01/70 00:00      
RE: Question about software RTC tutorial            01/01/70 00:00      
alarm clock            01/01/70 00:00      

Back to Subject List