2.33.1 The problems in this Exercise refer to the following function, given as array code:
a. void copy(int a[], int b[], int n){
int i;
for(i=0;i!=n;i++)
a[i]=b[i];
}
b. void shift(int a[], int n){
int i;
for(i=0;i!=n-1;i++)
a[i]=a[i+1];
}
[10] <2.14> Translate this function into MIPS assembly.
 
 
View Solution
 
 
 
<< Back Next >>