• ARMCC: Bitwise Vs half word access
    I was under the impression that the compiler would generate same code for read and write operation on the members of the following structure: typedef struct S32data_t { uint32_t a:16; uint32_t b:16;...
  • Some beginner questions about assembler in Mdk-arm.
    1. How to write several instructions on one line? For example, 3 NOP instructions? 2. Why is the instruction not blue? uVison in .s file automatic automatically istrukcion shows blue in the following...
  • ARMCC: How to generate assembly
    I'd like to generate assembly file for a corresponding .c file and I've tried the following which do not work. armcc.exe -c test.c -o test.o fromelf.exe -c test.o -o test.s The above generates...
  • Where can I download asm(assembler) not c compiler for writing apps for I phone 6
    I am interested in writing some cell phone apps in ARM assembly language. I would like to write them for Apple I phone 6  and Android Samsung S5. I am very familiar with writing in Assembly language on...
  • armcc
    Note: This was originally posted on 5th April 2013 at http://forums.arm.com Is there a compiler option or pragma that allows me to see "padding" in c structure?   typedef struct st {   char a; ...