void WriteString(char *pStr) 
{ 
   while (*pStr)
   { 
      WR_DATA(*pStr++); 
   }
}