• same constant in assembler and C
    I have a product where most is in C, but for speed reasons abt 2% is in assembler. A few constants are thus defined in 2 places <constants.h> #define VALUE 5 <constants.inc> VALUE EQU 5 This...
  • same constant in assembler and C
    I have a product where most is in C, but for speed reasons abt 2% is in assembler. A few constants are thus defined in 2 places <constants.h> #define VALUE 5 <constants.inc> VALUE EQU 5 This...
  • LPC845 - ARM Compiler V6 - Declaring and using constants in LP845_startup.s assembly code
    I am looking for an example with the Arm V6 compiler, for reading and writing GPREG0 register of the PMU on the L PC845.s? Specifically, how do you do something like a #define in the assembly code with...
  • LPC845 - ARM Compiler V6 - Declaring and using constants in LP845_startup.s assembly code
    I am looking for an example with the Arm V6 compiler, for reading and writing GPREG0 register of the PMU on the L PC845.s? Specifically, how do you do something like a #define in the assembly code with...
  • arm assembly - generating of 32 bit constants
    Note: This was originally posted on 13th October 2009 at http://forums.arm.com Hi, i am searching for an algorithm to load any kind of 32 bit constants. As you know the arm compiler puts in the most cases...