• Reinhard, Jon can you answer: Struct across 64 boundary
    At this time when the two of you are active here, can I get an answer to the following which I have sougtht an answer to for some time both through support and this forum. Is there - or will there...
  • Reinhard, Jon can you answer: Struct across 64 boundary
    At this time when the two of you are active here, can I get an answer to the following which I have sougtht an answer to for some time both through support and this forum. Is there - or will there...
  • Problem with uint32_t accesses using LDRD
    To illustrate my problem, I just implemented demonstration code: #include <stdint.h> uint64_t read(const uint32_t *wordStream) { uint32_t low = *wordStream++; uint64_t high = *wordStream++; high...
  • Problem with uint32_t accesses using LDRD
    To illustrate my problem, I just implemented demonstration code: #include <stdint.h> uint64_t read(const uint32_t *wordStream) { uint32_t low = *wordStream++; uint64_t high = *wordStream++; high...
  • __asm uint32_t test (uint32_t data) problem
    Want to declare an assembler function (to be called from standard C) for a Cortex-M3 (LPC1343) like this: __asm uint32_t RevBytes (uint32_t data) { rev r0, r0 bx lr } Using armcc.exe V5.06...