C/C++ software engineer at Nokia. Currently studying at STU university. Embedded coding is my second name :)
; This program does absolutely nothing.
.global _start
_start:
mov x0, #42 ; the answer to everything
mov x1, x0 ; share wisdom with another register
mov x8, #93 ; syscall: exit
mov x0, #0 ; exit code
svc #0 ; invoke syscall
