Question: Please write the code is RISC V assembly this is the software I use Task 2: Implement a recursive procedure gcd(a,b) that uses Euclid's algorithm

Please write the code is RISC V assembly this is the software I use
Task 2: Implement a recursive procedure gcd(a,b) that uses Euclid's algorithm to find the greatest common divisor of two positive integers a and b. referring to the following pseudo-code: gcd (x,y){ if (y=0) return x; else gcd(y,x%y); \} Write a main program that i) asks the user to enter two positive integers a and b, ii) calls the recursive procedure gcd(a,b) to find their greatest common divisor, and iii) outputs the calculated result. Save your solution as a file named cex2.asm for possible future use. RVS (RISC-V Visual Simulator) v0.46
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
