• ? About listings and Structures
    Gang, I am working with the TI TAS1020 which is an Audio USB device. The code is stored on an EEPROM and download at boot time. USB uses Enumeration tables to detemine what the device can do...
  • link list
    Hello everyone, I am studying link list in c I have a project in which I have lookup table of rpm (clocks used to load the timer used for motor). This rpm table, I am taking in an array Now I want...
  • Link List
    xdata struct EEPROM { unsigned int Last_Data; struct EEPROM *Node; }; struct EEPROM xdata * xdata p; p = (struct EEPROM xdata *)0x0FF6; if i will print the following statement printf("Size...
  • Address of xdata structure elements are not linked into code structure
    I created a structure about data fields, which are located in a structure in xdata area. The informal structure itself should be in code area. typedef struct { unsigned char *pucRamAddr; eNvmDevice...
  • problem in the link list
    xdata struct WindowList{ struct Windows * thisW; struct WindowList * NextWindow; }; xdata struct WindowList temp; temp=temp.Next;//this line is generating an error.'=' incompatible operand What...