Skip to content

Instantly share code, notes, and snippets.

@aledruetta
Last active November 20, 2019 17:30
Show Gist options
  • Save aledruetta/ce2d53b9e5996a632765bad329ba6b60 to your computer and use it in GitHub Desktop.
Save aledruetta/ce2d53b9e5996a632765bad329ba6b60 to your computer and use it in GitHub Desktop.
@ hello.s
.text
.global _start
_start:
mov r7,#4
mov r0,#1
ldr r1,=message
mov r2,#14
svc #0
mov r7,#1
mov r0,#0
svc #0
.data
message: .ascii "Hello, world!\n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment