|
| SBIT Assembler Statement| Arguments |
sbit sfr_symbol = bit-address;
| | Description | The sbit statement defines a special function register bit: Where | sfr_symbol | is the name of the Special Function Register (SFR) symbol to define. | | bit-address | is the address of the SFR bit in the format address^bit_position. |
| | Example |
sbit P0_0 = P0^0;
sbit P0_1 = 0x90^1;
|
|
|