Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/injusmol/mips-lab-works

Programs written in MIPS assembly programming language for Systems Fundamentals Course.
https://github.com/injusmol/mips-lab-works

assembly mips

Last synced: 4 days ago
JSON representation

Programs written in MIPS assembly programming language for Systems Fundamentals Course.

Awesome Lists containing this project

README

        

# MIPS-Lab-Works
Programs written in MIPS programming language for Systems Fundamentals Course.

**Program 1:** A program that asks if the user wants a triangle, a square or a pyramid. It then
asks the user for the size of the object (the number of lines it takes to draw the object).
The program then writes/draws a triangle (right angled), a square or a pyramid of
stars "*" to the console.

Screenshot 2024-07-22 at 9 03 47 PM

**Program 2:** In this program, the content of two one dimensional integer arrays will be
exchanged(swapped). The swapping operation will be performed for each array
location.

Screenshot 2024-07-22 at 9 04 32 PM

**Program 3:** Matrix-vector multiplication