Continue to Site

Welcome to our site!

Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

  • Welcome to our site! Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

interrupt and tmro

Status
Not open for further replies.

Six-Sixteen

New Member
hello

do you know how to use interrupt and tmro for PIC16F84A?
I need detailed explanations for these topics(if possible sample assembly program with explanation), can you help me?

your help is highly appreciated.
 
Hi if you read the data sheet found at www.microchip.com it will tell you that the interupt vector for all interupts is fixed at 4.
Code:
ORG   0x00
   GOTO codestart
ORG   0x04
   ; intrerupts will come here
When the interupt is called the apropreate flag is set, se the datasheet for more info.
 
Status
Not open for further replies.

Latest threads

New Articles From Microcontroller Tips

Back
Top