Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/kolbewilliams/assembly-arrays-and-functions
- Owner: KolbeWilliams
- Created: 2024-11-14T17:46:46.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-14T17:48:09.000Z (about 2 months ago)
- Last Synced: 2024-11-14T18:34:30.382Z (about 2 months ago)
- Topics: assembly-x86
- Language: Assembly
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.