• load region and execute region
    can the execute region address exceed the range specified by the load region base address and max size setting?
  • Load region size vs execution region size
    Trying to the keep the load region under 0x8000 but load region is more then 0x8000 yet execution region is only 0xa7c? How come my load region size is is so much more? This is a Cortex M1 on a Altera...
  • Memory Pool (malloc/free) Free Space?
    Quite simply, how can I tell how much free memory I have in a memory pool? I've created a memory pool, initialized it with init_mempool and use malloc & free finctions for memory management. Is...
  • PADDING execution regions
    Note: This was originally posted on 24th February 2010 at http://forums.arm.com Dear All,    I am looking for RVDS 2.2 arm linker option where I can pad the execution region with 0xFF's so that the size...
  • Calculate free remaining stack space
    Hi, I would like to calculate the free remaining stack space during run time. I tried to access the r13 register with: LPSTR pcSP; { register volatile int mySP __asm("sp"); pcSP= (LPSTR)mySP;...