MOVLW 55h moves the literal value of 55h into W.
MOVLW _Temp loads the address of _Temp into W. If you look at the .lst file you'll
see _Temp is located at 22h in RAM.
_Temp is a file register. If you want the value in _Temp in W use MOVF _Temp,W.
MOVLW 55h moves the literal value of 55h into W.
MOVLW _Temp loads the address of _Temp into W. If you look at the .lst file you'll
see _Temp is located at 22h in RAM.
_Temp is a file register. If you want the value in _Temp in W use MOVF _Temp,W.
Bookmarks