Spams Hello World 100,000 times.
Tested on the 32-bit Raspberry Pi 2B.
I wanted to build a program to tie all of my Assembly knowledge together. This program uses:
- Conditionals
- Branches
- Loops
- The Stack
- Memory storage
- Labels
- String output
- Assemble file:
as main.s -o main.o
- Create executable binary:
ld main.o -o main
- Run file:
./main