Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevinhooke/0e80848f01b09099929da25da5f37dcc to your computer and use it in GitHub Desktop.
Save kevinhooke/0e80848f01b09099929da25da5f37dcc to your computer and use it in GitHub Desktop.
ARM ASM compile to executable
#using as and ld
as example.s -o example.o
ld example.o -o example
#using gcc
gcc example.s -o example
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment