Some basic Arm assembly programming on Raspberry Pi
Compile:
as -o first.o first.s
gcc -o first first.o
Run:
./first
Output: (nothing)
Compile
as -o hello-world.o hello-world.s
gcc -o hello-world hello-world.o
Run:
./hello-world
Output: Hello, world!