• access to : http://www.keil.com/support/docs/159.htm
    Hi, Please may I know where i can get the doc that was previously on this link. http://www.keil.com/support/docs/159.htm Thanks!
  • re http://www.keil.com/discuss/docs/thread7896.htm
    dear webmaster, (Jon?) would you consider a line length lmit for the next version of the forum ? Erik
  • Pointer interpreted as a NULL pointer. Bug?
    I have a struture which is correctly allocated at address 0x4000 (read from the M66 file). The DPP0 is used by Keil to point to the NDATA memory chunk: DPP0 = 1 so the pointer to my struture, when...
  • pointer warnings
    I get some strange warnings doing pointer arithmetic. #include <stddef.h> char x[3]; char *p=&x[3]; void foo(void) { ptrdiff_t f1=p-&x[0]; ptrdiff_t f2=p-x; } f1 is OK, but f2 generates a warning...
  • SWAP pointers
    Function does work,like I hoped ... char *swapdata (char *destination, char *SourceLine) { char *temp; temp=SourceLine; SourceLine=destination; destination=temp; printf("in function...