The goal of this project is to code a simple program in MIPS. add and addressing in MIPS. Implement the following C code
Posted: Thu May 05, 2022 1:20 pm
The goal of this project is to code a simple program in MIPS. add and addressing in MIPS. Implement the following C code in MIPS. #include <stdio.h> #include <stdlib.h> int main() { int num1 = 23; int num2 = 24; int num3 = 25; int num4 = 26; int num5 = 0; int arr[] = {10, 11, 13, 14, 15, 16}; num5 num1 + num2 (num3 + num4); arr [5] = arr [0] + arr [2]; return 0;