// test_call2_64.c a very simple loop that will be coded for nasm #include #include "call2_64.h" // may be call2_64.c or call2_64.asm int main() { long int dd1[100]; long int i; dd1[0]=5; // be sure loop stays 1..98 dd1[99]=9; call2_64(dd1,1,98,7); // fill dd1[1] thru dd1[98] with 7 printf("dd1[0]=%ld, dd1[1]=%ld, dd1[98]=%ld, dd1[99]=%ld\n", dd1[0], dd1[1], dd1[98],dd1[99]); return 0; }