Skip to content

Instantly share code, notes, and snippets.

@steshaw
Created July 28, 2023 02:32
Show Gist options
  • Save steshaw/cf4e3b76b2fe3ecd93b1252333d706f4 to your computer and use it in GitHub Desktop.
Save steshaw/cf4e3b76b2fe3ecd93b1252333d706f4 to your computer and use it in GitHub Desktop.
#
# On macOS ARM64, compile using:
#
# $ arch -x86_64 clang main.s
#
# Run with:
#
# $ ./a.out
#
# Inspect exit code:
#
# $ echo $?
#
# The result is the meaning of life, the universe, and everything!
#
.globl _main
_main:
movq $10, %rax
addq $32, %rax
retq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment