/* test_call1.c test call1.asm */ #include int main() { int L[2]; L[1]=1; L[2]=2; call1(L); printf("L[0]=%d, L[1]=%d \n", L[0], L[1]); return 0; }