Hi,
CAn anyone point out what is the error is following code? It compiles OK, but doesnot work as expected.
code char* str1="xxyyzz";
void putstr(const char *s){
unsigned char ctr=8;
do{
tx_busy=1;
SBUF=*s++;
while(tx_busy);
}while(-…