Experienced ‘C’ programmers please note these lines:


sbit Switch_pin = P1^0;
sbit LED_pin = P1^1;
Here we gain access to two port pins through the use of an sbit
variable declaration. The symbol ‘^’ is used, but the XOR bitwise
operator is NOT involved.