Created
July 28, 2023 02:32
-
-
Save steshaw/cf4e3b76b2fe3ecd93b1252333d706f4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# 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