We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This script tells the linker that the program's entry point is at the global symbol _Entry, which we export from startup.s.
_Entry
startup.s
Should it be a _Reset instead of _Entry?
_Reset
The text was updated successfully, but these errors were encountered:
@oliwkowemango
yes, you're right. You can see that it actually uses _Reset in the linker script:
baremetal-arm/src/04_cenv/linkscript.ld
Line 3 in 4ce7973
Lines 13 to 15 in 4ce7973
baremetal-arm/src/04_cenv/startup.s
Lines 6 to 10 in 4ce7973
Sorry, something went wrong.
No branches or pull requests
Should it be a
_Reset
instead of_Entry
?The text was updated successfully, but these errors were encountered: