• Define variables in assembly file
    How do define short, byte and integer variables in the startup.s file? what are names of this directives?
  • ARM Vs GCC assembler
    Note: This was originally posted on 25th January 2013 at http://forums.arm.com Hi, I have a question regarding the ARM and GCC assemblers i.e. ARMASM and GAS. MOV.W R4,#0x87C0 is translated to F248_74C0...
  • How to define variable to ZI area
    I have defined some globle variables without initial value, but they were in the RW area, this cause the BIN file larger, how can I put them to ZI area? thanks!
  • How to define a variable at external RAM?
    if the CARM compiler have the key word define the external data just like "xdata" in 51?
  • how to get environment variables as #defines
    I'd like to import an environment variable into the build. In other IDEs I've been able to do it as a command-line parameter - e.g.: -D FROM_ENV=$(ENV_VARIABLE) or something like that. The idea is...