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

problem with bdata of type char

iam getting syntax errors whiel accessing
bdata chat buff[10]
i wrote the code as below to acces the array

char bdata buff[10]; sbit mybit4; unsigned int i=0;

for(i=0;i<=10;i++)
{ mybit4 = buff[i] ^ 4;
buff[i]^4=(mybit4&buff[i]^4);
}

0