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
- Host: GitHub
- URL: https://github.com/emmanuelmess/queue-and-stack-arm
- Owner: EmmanuelMess
- Created: 2020-12-08T20:02:19.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-08T20:13:50.000Z (over 5 years ago)
- Last Synced: 2025-03-05T09:20:36.202Z (over 1 year ago)
- Topics: arm, asm, c, shunting-yard-algorithm
- Language: C
- Homepage:
- Size: 333 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)