If I have the following C code:
int *p1; int a[10]; int main(void) { p1 = a; return 0 }
How would I recreate that in MIPS? Here