Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Mips program. main: li $a0,4 li $a1,0 jal nchoosek # evaluate C(4,0); should be 1 jal printv0 li $a0,4 li $a1,1 jal nchoosek # evaluate

Mips program.

image text in transcribed

main: li $a0,4 li $a1,0 jal nchoosek # evaluate C(4,0); should be 1 jal printv0 li $a0,4 li $a1,1 jal nchoosek # evaluate C(4,1); should be 4 jal printv0 li $a0,4 li $a1,2 jal nchoosek # evaluate C(4,2); should be 6 jal printv0 li $a0,4 li $a1,3 jal nchoosek # evaluate C(4,3); should be 4 jal printv0 li $a0,4 li $a1,4 jal nchoosek # evaluate C(4,4); should be 1 jal printv0 li $a0,4 li $a1,5 jal nchoosek # evaluate C(4,5); should be 0 jal printv0 li $v0,10 syscall

nchoosek: # you fill in the prologue

Save $s0, $s1, $s2, #ra on $sp

beq $a1,$0,return1 beq $a0,$a1,return1 beq $a0,$0,return0 blt $a0,$a1,return0

addi $a0,$a0,-1 # C(n,k) = C(n-1,k) + C(n-1,k-1) move $s0,$a0 move $s1,$a1 jal nchoosek move $s2,$v0 move $a0,$s0 addi $a1,$s1,-1 jal nchoosek add $v0,$v0,$s2 j return return0: move $v0,$0 j return return1: addi $v0,$0,1 return: # you fill in the epilog

printv0: addi $sp,$sp,-4 sw $ra,0($sp) move $a0,$v0 li $v0,1 syscall li $a0,' ' li $v0,11 syscall lw $ra,0($sp) addi $sp,$sp,4 jr $ra

(Exercise) Fill-in nchoosek.s This program will calculate "N choose K" entry in Pascal's triangle or the number of combinations of n distinct elements when taken k at a time. Your job is to add prologue and epilogue to complete this

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Advanced MySQL 8 Discover The Full Potential Of MySQL And Ensure High Performance Of Your Database

Authors: Eric Vanier ,Birju Shah ,Tejaswi Malepati

1st Edition

1788834445, 978-1788834445

More Books

Students also viewed these Databases questions

Question

Developing and delivering learning that is integrated with the job.

Answered: 1 week ago

Question

Use of assessments to determine trainees learning styles.

Answered: 1 week ago

Question

7. Discuss the advantages of embedded learning.

Answered: 1 week ago