Skip to content

Queue and stack in ARM ASM

Notifications You must be signed in to change notification settings

EmmanuelMess/Queue-and-Stack-ARM

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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