Last active
November 20, 2019 17:30
-
-
Save aledruetta/ce2d53b9e5996a632765bad329ba6b60 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
@ 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