An open API service indexing awesome lists of open source software.

https://github.com/emmanuelmess/queue-and-stack-arm

Queue and stack in ARM ASM
https://github.com/emmanuelmess/queue-and-stack-arm

arm asm c shunting-yard-algorithm

Last synced: 16 days ago
JSON representation

Queue and stack in ARM ASM

Awesome Lists containing this project

README

          

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](https://rosettacode.org/wiki/Parsing/Shunting-yard_algorithm#C)