• Using __attribute__((at(address)))
    Hi, I hope someone can shed a light on this, I have a board with a LCP2294 and 4Mb IDT71V416L external RAM. Using Keil RealView 3.01 I used the "__at 0x81000000" modifier to place a global...
  • Using __attribute__( ( always_inline ) )
    If I use "__attribute__( ( always_inline ) )" before a functions which is defined in one file & call that function from another file. is it right???
  • __attribute__((at(x))) for AC6 ?
    Hello, is it possible to define a const variable at a given address using AC6 similar to this? __attribute__((used)) const char signature[16] __attribute__((at(0x08041000)))={"my_signature"...
  • __attribute__((bitband)) address miscalculation?
    Hello, I'm using Keil MDK 3.80a on STM32 and trying to use the bitband attribute to access individual bits in a 32bit register. typedef struct { uint32_t a0: 1; uint32_t b0: 1; uint32_t c0...
  • Is it possible to declare "naked" functions with armcc (KEIL)?
    Note: This was originally posted on 29th March 2011 at http://forums.arm.com With GCC I use this kind of functions: __attribute__((naked)) void tb_flush(char* val1, int val2) { asm volatile (".thumb_func...