-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PA1_KendalHarris #23
base: master
Are you sure you want to change the base?
PA1_KendalHarris #23
Conversation
delete cumulative_oddSum file without *.asm extension
delete fib_nums_REDONE file without *.asm extension
delete integer_operations file without *.asm extension
|
||
jr $ra # return from subroutine | ||
# End of subroutine to print the numbers on one line | ||
############################################################### |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Program runs correctly and produced correct results.
SCORE: 88 Excellent commenting in all three parts, please keep that up. PART 1: Program runs correctly and produced correct results. PART 2: -2 Lines 61 and 62: -8 The instructions require that your intermediate results are stored into memory, and are later retrieved for printing. You've declared an array "values", presumably for this purpose, and you've loaded the address of "values" into $s0, but you never use $s0 after that. Other portions of the program function correctly. PART 3: |
No description provided.