• __main
    HI, I'm porting an older RL-ARM project. I have noticed that in the demo HTTP project the file LPC2400_RTX.s has no code after IMPORT __main Where my original had: LDR R0, =__main BX R0 ...
  • Where is __main?
    We use Keil tools to generate C++ embedded application that run in our embedded controller. My initialization code jumps to __main as follows: IMPORT __main LDR R0, =__main BX R0 Wher is...
  • Debugging "__main"
    Is there any way to be able to step through the code (associated C Code) that is executed when calling "__main" from the start up file? Reset_Handler PROC EXPORT Reset_Handler [WEAK] IMPORT HW_init...
  • The contents of __main
    Where can i find information on __main, Its contents and functionality. Thanks
  • __main is going in hardfault
    I am working on Cortex M0+ controller. Following is issue i am facing in __main library function. While executing library function __main (Keil compiler internal fucntion for initializatioin data...