https://github.com/larsfriese/mips-assembly-scripts
Collection of solutions to exercises and additional scripts.
https://github.com/larsfriese/mips-assembly-scripts
Last synced: 11 months ago
JSON representation
Collection of solutions to exercises and additional scripts.
- Host: GitHub
- URL: https://github.com/larsfriese/mips-assembly-scripts
- Owner: larsfriese
- Created: 2023-12-06T22:15:46.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-11T16:28:01.000Z (about 2 years ago)
- Last Synced: 2025-01-05T08:55:14.726Z (about 1 year ago)
- Language: Assembly
- Size: 113 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mips-assembly-scripts
Collection of solutions to exercises and additional scripts.
My solutions to the worksheet exercises from the course:
- (8.2) [Calculating the biggest common denominator](sheet8/sheet8_2.asm)
- (9.1) [Count occurences of character in string](sheet9/sheet9_1.asm)
- (9.2) [Disassemble MIPS machine code into MIPS assembler code](sheet9/sheet9_2.asm)
- (10.1/2/3) [Calculate the zeros of a quadratic equation, using herons method](sheet10/sheet10.asm)
- (11.1) [Iterativle calculate the fibbonaci numbers](sheet11/sheet11_1_iterative.asm)
- (11.2) [Recursivly calculate the fibbonaci numbers, using the stack](sheet11/blatt11_2.asm)
- In detail explanation: fib_stack.pdf
- (13.2) [Caesars cypher](sheet13/sheet13_2.asm)
- (13.3) [Disassemble MIPS machine code into MIPS assembler code](sheet13/sheet13_3.asm)
- (13.4) [Create ToUpper and ToLower functions for strings](sheet13/sheet13_4.asm)
Additional solutions to exercises:
- Strings:
- [Palindrome checking](other_exercises/palindrome_checker.asm)
- [String reversing](other_exercises/string_reversing.asm)
- Floating Point Exercises:
- [Approximating PI](other_exercises/approximating_pi.asm)
- Explanation of exercise: [approximating_pi_explanation.pdf](other_exercises/approximating_pi_explanation.pdf)
- Stack Exercises:
- Calculating factorial