Hello World in ARM Assembly
Installation
I'm using WSL to build and run the ARM assembly code, these are the installation packages I used:
sudo apt install gcc-arm-linux-gnueabi make git-core ncurses-dev qemu qemu-user
Code
Simple program to return a number to shell
.global _start
.section .text
_start:
mov r7, #0x1 @ System call number