Is the following instruction right?
sbit led_state = P5^1 led_state= ~led_state
sbit led_state = P5^1; led_state ^= 1; How about this?