Does anyone know if there is a difference between a MCLR reset and cycling the power?
And does PBP have a "reset" command? I know I can use
but can I do it directly with PBP?Code:ASM
RESET
ENDASM
Printable View
Does anyone know if there is a difference between a MCLR reset and cycling the power?
And does PBP have a "reset" command? I know I can use
but can I do it directly with PBP?Code:ASM
RESET
ENDASM
Yes, there are differences between the different RESET's.
The Initialization Conditions table in the datasheet shows the differences.
Attachment 5182
> but can I do it directly with PBP?
@ RESET only works on 18F's and 16F1's.Code:@ RESET
10F, 12F, 16F don't have a RESET instruction.
Thanks Darrel. Seems I always forget about @.
The 16F1's seem to be my new favorite flavor. I guess I soon need to migrate to the 18's.