• Function returns structure problem in ARM926
  • Function returns structure problem in ARM926
  • Problems with SDRAM and return of a function
    Dear all, I'm using the LPC2468 with SDRAM that ist configured in the startup and ind the memory layout. In general ist works. But I found one strange problem. I have a sructure ExternalCFG that...
  • Problems with SDRAM and return of a function
    Dear all, I'm using the LPC2468 with SDRAM that ist configured in the startup and ind the memory layout. In general ist works. But I found one strange problem. I have a sructure ExternalCFG that...
  • Function returning a struct
    Hi, How come the 51 compiler V7.04 cannot compile the following code? typedef struct { int i; } S; S jj(void) { S k; return(k); } S i(void) { return(jj()); } void main(void...