• ASSUME declaration in an a.66 file
    Hello ALL, if I defined in L166Locate- µVision DPP USAGE NDATA DPP2(0xC000-0xE7FF) and in one of my a.66 file ASSUME DPP1 : NCONST ASSUME DPP2 : NDATA ASSUME DPP3 : SYSTEM ?ND?Test section...
  • 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...
  • __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...
  • array alignment
    Hi there, I am using Keil to work on my ADuCM360 project. Is there a way to force a byte array to be word aligned? such as #pragma pack (2) from Microsoft? Thanks for your help!
  • Alignment of arrays
    Hi guys, I'm currently working with a Cortex-M0 which is incapable of unaligned reads. I have a byte array which is storing a received packet in a certain protocol, the first lot of information...