This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

in C51 ,SFR Bit ??

Programe is following
#,,,,
sfr p0 = 0x80;
sbit p10 = p0^0;
sbit p11 = p0^1;

void main(void)
{
...
fc(p10);
}

void fc(bit bv)
{
bv=1;
..... // delay
bv=0;
}


but output of p10 is error;;;;;