Name: | Mr. Krishna Durbha |
Company: | HELA |
Web Site: | |
Questions:
#include p16f876.inc
org 0000h
goto main
org 0010h
main:
count equ 0x13
movlw 31h
movlw 03h
movwf count
loop:
decfsz count,1
movwf count
addwf count
goto loop
goto main
end
; this program does not seem to work. when i try and add count in the watch window it does not appear as a symbol.