Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Need help with below RISC-V code. Was told error due to calling convention, and no need to change the original code. .data n: .word 2

Need help with below RISC-V code. Was told error due to calling convention, and no need to change the original code.

.data n: .word 2 exp: .word 10

.text main: # load the value of n into a0 la a0 n lw a0 0(a0)

# load the value of exp into a1 la a1 exp lw a1 0(a1)

# call pow jal pow

# prints the output of pow mv a1 a0 li a0 1 ecall # Print Result

# exits the program li a0 17 li a1 0 ecall

pow: # this function is a recursive pow function # a0 contains the base # a1 contains the power to raise to # the return value should be the result of a0^a1 # where ^ is the exponent operator, not XOR sw s0 0(sp)

# return 1 if a1 == 0 beq a1 x0 ex2_zero_case

# otherwise, return ex2(a0, a1-1) * a0 mv s0 a0 # save a0 in s0 addi a1 a1 -1 # decrement a1

jal ex2 # call ex2(a0, a1-1)

mul a0 a0 s0 # multiply ex2(a0, a1-1) by s0 # (which contains the value of a0)

j ex2_end

pow_zero_case: li a0 1

pow_end: lw s0 0(sp)

jr ra

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

Microsoft SQL Server 2012 Unleashed

Authors: Ray Rankins, Paul Bertucci

1st Edition

0133408507, 9780133408508

More Books

Students also viewed these Databases questions