|
| SFR Assembler Statement| Arguments |
sfr sfr_symbol = address;
| | Description | The sfr statement defines a special function register: Where | sfr_symbol | is the name of the Special Function Register (SFR) symbol to define. | | address | is the address of the SFR. |
| | Example |
sfr P0 = 0x80;
sfr P1 = 0x90;
|
|
|