Hi Charles,
i created this simple program and tried to run but it didn't worked. it should blink led and remap high priority interrupt vector
but if i comment out the goto 0x2008 line it starts to blink led. since i am not using any interrupt then why its not blinking led?adcon1 = 15
DEFINE OSC 48
asm
org 0x0008
goto 0x2008
endasm
i var byte
j var byte
main:
high porta.0
for i = 0 to 254
for j = 0 to 254
high porta.0
next j
next i
for i = 0 to 254
for j = 0 to 254
low porta.0
next j
next i
goto main
can you please help me
thank you
Bookmarks