This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Compute the fibonacci sequence up to the largest unsigned 32-bit value, and print the results. | |
# Registers: | |
# $s0: The larger of the two most recent fibonaci numbers | |
# $s1: The smaller of the two most recent fibonaci numbers | |
# $s2: The maximum unsigned integer value | |
# $t0: The newly calculated next fibonacci number | |
# $a0, $v0: Used for system calls | |
# $t1: Intermediate product in comparisons | |
.text | |
main: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"basics": { | |
"name": "Noah Jackowitz", | |
"email": "noah.jackowitz@gmail.com", | |
"phone": "(530) 503-0398", | |
"image": "https://avatars.githubusercontent.com/hackowitz", | |
"location": { | |
"address": "635 40th St", | |
"postalCode": "84403", | |
"city": "South Ogden", |