From the manual:

Code:
 WRITE Address,Value
So looking at the 16F684.PDF it says:

The PIC16F684 has 256 bytes of data EEPROM
with an address range from 0h to FFh.
So would:
Code:
WRITE 0h,Total
work? Not quite as simple as that he says! For one thing these are EEPROM BYTES and 'Total' is a WORD two BYTES for a starter.

Dvae