Hi Richard,

When using the SYSTEM modifier, you don't need to use the underscore before the variable name.

Code:
MyVar  VAR  BYTE 

@    movwf  _MyVar,F
Code:
MyVar  VAR  BYTE SYSTEM

@    movwf   MyVar,F