Question: Question 7 Suppose that you are working with a CISC machine using a 2 . 2 GHz clock ( i . e . , the

Question 7
Suppose that you are working with a CISC machine using a 2.2 GHz clock (i.e., the clock ticks 2.2 billion times per second). This particular computer uses MASM-like instructions with the following timings:
Suppose that the following code fragment is used to sum elements of a numeric array. For this problem, assume that memory limitations are non-existent and that there is no limit to the size of the array.MOV ECX, MAX_SIZE ; initialize LOOP counter
MOV ESI, OFFSET list ; initialize array pointer
_ProcessArray:
ADD BX,[ESI] ;Add current list element
ADD ESI, 2 ;Move array pointer to next element
LOOP _ProcessArray ;auto-decrement ECX, jump to more if ECX
eq}After initialization, how many array elements can be processed in 2.6 millisecond (ms)? Round your answer to the nearest integer. Note that 1ms=0.001 second.
Question 7 Suppose that you are working with a

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!