• about call tree
    I view my .m51 file for the call tree, it looks like this: SEGMENT +--> CALLED SEGMENT --------------------- ?C_C51STARTUP +--> ?PR?MAIN?MAIN +--> ?C_INITSEG ...... the problem is that...
  • No Root Segment, no call tree..
    I'm using an assembler startup file like the one given in the C manual. When I compile and link the project I get a Warning 10, No Root segment. Apart from this, the linker doesn't make an overlay...
  • memory expansion
    Hi, I am using AT89S8252 microcontroller in order to implement a Telescope GOTO system. This system needs a lot of star data and the AT89S8252 has only 8K of code and 2K of EEPROM. I also don't have...
  • Manipulating call tree for data overlay...
    Hello. Is there any way to simplify the call tree manipulation in linker..? (Scripting kind of) My code has number of function calls through pointers. The functions are divided in few main groups...
  • C Macro Expansion Question
    Is there a way to create a C #define macro such that a call to it: nop_delay(5) would yield the following expanded code?: _nop()_; _nop()_; _nop()_; _nop()_; _nop()_; Thanks, Tom...