• in-place processing
    Hi, I am writing device driver for nand flash. I want to know whether the nand flash supports in-place processing or not. If it supports please give me the detail, how it can be done.
  • Placing Constant at a particular address
    Hi, I need to place a constant array at code address 0x10000. When i say this it puts it in address 0x0000 leaving out the one and it conflicts with the code already present at 0x0000. Can someone tell...
  • variables at same memory places
    I have declared in source file src1.c following variables. xdata unsigned char keybuffer[8]; unsigned int keys; unsigned char keyctr; I have an another source file src2.c and I want to declare...
  • const placed in DATA segment
    Hi All, when I write: const char mysting[] ={"my string"}; data are placed to DATA segment, not code sement. I know if it would be written like this: code char mysting[] ={"my string"}; data...
  • placing arrays in code
    what to place arrays of text in code without occupuing ram, in pascal (old days) we wrote pre text :array[1..5] of array[1..36] of string[16]= (' ', /pre if I use this in keil it uses ram ! ...