??? 10/14/05 08:07 Read: times |
#102382 - short answer Responding to: ???'s previous message |
PUBLIC ?timer0_interrupt ; --> int routine must be public
CSEG AT 0BH ; --> locate rom address 0x000B, write this statement in a SEGMENT CODE LJMP ?timer0_interrupt ; --> at located rom address write your jump to your interrupt routine Don't forget the RETI statement at end of your interrupt routine Regards, Andree |