10.3.5 SFR Addresses
Absolute addresses for the SFRs are defined as a series of symbol definitions:
/*
** ============== Equates for SFR Addresses =============
*/
 WREG0        = 0x0;
_WREG0        = 0x0;
 WREG1        = 0x2;
_WREG1        = 0x2;
:
:
      Note: If identifiers in a C or assembly program are defined with the same names as SFRs, multiple definition linker errors will result.
      Two versions of each SFR address are included, with and without a leading underscore. This is to enable both C and assembly language programmers to refer to the SFR using the same name. By convention, the C compiler adds a leading underscore to every identifier.
