8.11 Suppose the program statement for(i=1;i6= n;i+) a[i] = b[i] + c[i]; is executed in a memory with page size of 1000
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
8.11 Suppose the program statement for(i=1;i6= n;i+) a[i] = b[i] + c[i]; is executed in a memory with page size of 1000
statement for(i=1;i6= n;i+) a = b + c; is executed in a memory with page size of 1000 words. Let n = 1000. Using a machine that has a full range of register-to-register instructions and employs index registers, write a hypothetical program to implement the foregoing statement. Then show the sequence of page references during execution.
8.11 Suppose the program