(20 points)
Write a program in the style of lecture 24 (this means you should assume the
same datapath and set of instructions) that implements the following snippet
of C/Java/C# code:
x = 0;
for (i = 100; i < 200; i++)
x = x + Arr[i];
Make sure that you state your initial assumptions about what values are in
what registers.