• version number in flashmemory
    l.s., I want put a versionnumber and additional text at the first address of the flashmemory of my 89c668, so the customer can read it easily with the flashmagic tool. Any suggestions? Thanks...
  • Trouble accessing array values
    I'm having difficulty accessing a value from an array. Here's an example of what the code is doing: unsigned char xdata In_Buf[2][70]; unsigned char port; void main(void){ port = In_Buf[0...
  • accessing array of ptr in the structures
    i've declared a structure as typedef struct elem { int a; void *b[20]; }e; how can i access the array of (void) pointer inside a structure??? e.b ??? - is this correct manner of accessing...
  • accessing array's row 0
    I have a matrix for the keyboard layout in my program as follows: code unsigned char buttons[BUTTON_COUNT][KEY_TABLE_WIDTH] = { {'8', 'u', 'ü', 'v', EMPTY_CODE}, {'7', 'r', 's', 'ş', 't'}, {...
  • Using PLD for strided access to an array
    Given the following code that is accessing the columns of a matrix layer out in row major order, I want to include a prefetch so that I do not have misses on each column component. Cam you tell me where...