Use Four Different Instruction Set Architecture Styles Assume Memory Operations Supported Q43890576
Use the four different instruction set architecture styles fromabove, but assume that the memory operations supported includeregister indirect as well as direct addressing. Invent your ownassembly language mnemonics, and for each architecture write thebest equivalent assembly language code for this fragment of Ccode:
for (i = 0; i <= 100; i++)
{ A[i] = B[i] + C; }
Assume that A and B are arrays of 64-bit integers, and C and iare 64-bit integers.
The second and third columns contain the cumulative percentageof the data references and branches, respectively, that can beaccommodated with the corresponding number of bits of magnitude inthe displacement. These are the average distances of all theinteger and floating-point programs.
Expert Answer
Answer to Use the four different instruction set architecture styles from above, but assume that the memory operations supported i…
OR