Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 512 Bytes

README.md

File metadata and controls

19 lines (10 loc) · 512 Bytes

ARM Assembly Homework

Type in the first assembly program from the Raspberry Pi Assembler book in section 1.2, page 10 of the PDF. Compile the program on x86 Ubuntu with:

arm-none-linux-gnueabi -static -o first first.s

Or use whatever cross compiler is on your system.

Run the program with:

qemu-user ./first
echo $?

Submit in your GitHub repository:

  1. Your source code first.s
  2. A screenshot of your terminal compiling and running your program