• Grouping all string Literals in one pool in the binary image
    Note: This was originally posted on 20th June 2013 at http://forums.arm.com I am currently ramping up on ARM DS-5. I want to know if it is possible to ensure that all string literals and constants in...
  • Memory Pool
    I dont understand very well so that we use the memory pool.... Can u explain me? Thanks
  • Memory pool
    Hello all, I'm working with C51 complier ver 7.00. Can anyone help me with the following questions? 1. For using functions like malloc, calloc and etc I need to define memory pool. If I define a...
  • Literal evaluation messed up
    When I write the following in uVision, mov A, -2000 I want A to contain 0x30, as -2000 is 0xF830. Instead it contains 0x05. Is there any predefined macro to be able to treat a literal as sixteen...
  • Literalizing the '#' character in #define
    The C51 pre-processor treats the "#" character as the "Stringize" operator. How do I override this operator when desired? For example: #define X mov A,#10 Expands to: mov A,10 How can I force...