****************************************************************** ***************** Assignment #2 for CS341 ********************* ***** Due Thursday 09/20/01 ***** ****************************************************************** The goal of this assignment is to gain experience in translating into assembly hi-level language segments involving nested loops and multi-dimensional array access. Translate the following into SPARC assembly language and test it on the simulator. int m,n; int arr1[10][10]; int arr2[10], arr3[10]; cout << "Enter m: " << endl; cin >> m; cout << "Enter n: " << endl; cin >> n; cout << "Enter elements of arr1 in row-major form : " << endl; for (int i=0; i < m; i++) { for (int j=0; j < n; j++) cin >> arr1[i][j]; } cout << "Enter elements of arr2 : " << endl; for (int j=0; j < n; j++) cin >> arr2[j]; // Matrix Vector Multiplication for (i=0; i