Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 324 Bytes

README.md

File metadata and controls

9 lines (7 loc) · 324 Bytes

A small implementation of a Queue and Stack in ARM assembly.

To run

  • arm-linux-gnueabi-gcc -static -marm -o main main.c stack.s queue.s
  • qemu-arm main

Credits

  • @IgnacioPetru for knowledge on ARM
  • Rosetta Code for the C code of the Shunting Yard