Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kolbewilliams/assembly-arrays-and-functions

This program was written in Assembly and takes numbers that a user inputs and stores them in an array in memory. A function that is called from the main program squares each number in the array and adds them all together. Values are passed to and from the main program using a stack.
https://github.com/kolbewilliams/assembly-arrays-and-functions

assembly-x86

Last synced: about 1 month ago
JSON representation

This program was written in Assembly and takes numbers that a user inputs and stores them in an array in memory. A function that is called from the main program squares each number in the array and adds them all together. Values are passed to and from the main program using a stack.

Awesome Lists containing this project

README

        

# Assembly-Arrays-and-Functions
This program was written in Assembly and takes numbers that a user inputs and stores them in an array in memory. A function that is called from the main program squares each number in the array and adds them all together. Values are passed to and from the main program using a stack.