; Simple Program Example PROCESSOR 16F873 __CONFIG 0x3FF6 INCLUDE #define LED PORTB,0 cblock 0x20 i ; byte variable endc org 0x0 goto main org 0x4 main: bsf STATUS,RP0 bcf LED bcf STATUS,RP0 loop: bcf LED call dly bsf LED call dly goto loop dly: clrf i dly1: decf i,F btfss STATUS,Z goto dly1 return END