5. (20 pts) Write the corresponding MIPS program of the following three functions. void funcA(int a){ funcB(a); print a;
Posted: Fri Jul 08, 2022 7:28 am
5. (20 pts) Write the corresponding MIPS program of the following three functions. void funcA(int a){ funcB(a); print a; } void funcB(int b){ b = b + 1; } void main() { } funcA(1);