Another PBP trick when mixing with ASM is to declare your variables with the addendum SYSTEM:

Code:
Variable VAR BYTE
@MOVF _Variable, W
...becomes:
Code:
Variable VAR BYTE SYSTEM
@MOVF Variable, W