• __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 ...
  • Branching to __main
    Hey guys, does someone knows why a branching to __main from the reset handler can causes the program to stop execution at a breakpoint. It branches fine to main but the __main scatter initialisation...
  • 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...
  • The contents of __main
    Where can i find information on __main, Its contents and functionality. Thanks
  • __main not appearing to initialise data
    I have a strange problem in that initialised variables in external RAM are not being initialised by the 'C' startup code when the size of data exceeds a certain size - it gets zero initialised instead...