// call2_64.c a very simple loop that will be coded for nasm void call2_64(long int *A, long int start, long int end, long int value) { long int i; for(i=start; i<=end; i++) A[i]=value; return; }