This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

ARM DS5 for A53

I have created a c project for a53 bare metal moudle,but some problem confusing me ? please help me!!!!!!!!

project for a53

I want to add startup.s file for this project ,but  In the debug mode  the entry point  isnot this file  why ?

debug settings

Parents
  • Yes, this should be fine to do - when your initialization code is done, you then call __main, which performs the c library initialization and other actions, before finally calling main().

    When you link the image, use --entry to define the function within your startup.s as being the real start of the code.

Reply
  • Yes, this should be fine to do - when your initialization code is done, you then call __main, which performs the c library initialization and other actions, before finally calling main().

    When you link the image, use --entry to define the function within your startup.s as being the real start of the code.

Children