• declaration after function call
    I just started using kile c51 compiler with µVision. My problem is only a stylistic issue. While initializing my controler: <dir> unsigned char dummy1 = 0xFF; /* call openADC0 */ openADC0(...
  • COVERAGE SAVE doesn't work
    Hello! I'm trying to gater multi-session code coverage, but when I execute "COVERAGE SAVE cov" command it doesn't change existing cov file. It doesn't give any error messages also.
  • Preserving registers on function calls
    We have an assembler function, which when called from C, some or all registers may be trashed. Saving and then restoring them is an option but it takes too much RAM. Is there a directive which tells...
  • locating functions automatically
    I need to locate a large number of functions in the a specific memory range. I have tried using the ?pr?*?myobject wildcard like this: ?PR?*?myobject (0XC11200) (myobject has 3 functions:...
  • Register Declaration
    I have the follow definitions of my registers : typedef struct { unsigned int var1; unsigned int var2; unsigned int var3; } test; #define pTest ((test *) 0x200000FF) And to access the...