4.2.4.2 File Registers

File registers represent on-chip general purpose and SFRs. File registers are distinguished from literal values because they do not have the preceding pound sign.

Each of the following examples tells the processor to move data located in the file register whose address is 14 to the working register w0:

mov 0xE, w0
mov 016, w0
mov 14, w0
.equ symbol, 14
mov symbol, w0