Hi,
You need to use a Word variable and store it in Non-volatile memory with WRITE and READ commands. However, these commands work only with individual bytes (or the WORD qualifier) , so you need to split the Words into individual bytes, e.g. using w1 = b3 * 256 + b2 or WRITE b2 , b3 or WRITE...