Do like and comment if you have any queries.
Answer:
![stages LOAD Pipeline diogram :- a tu in each stages c ca cs C4 C5 C6 TID IRR IALUI MEM|WR I C7 STORE DO RR 20 ALU MEM] RR | A](http://img.homeworklib.com/questions/dd6dd0f0-91e7-11ea-a93a-eddd3c84b553.png?x-oss-process=image/resize,w_560)

1 Pipeline: A (fictional) CPU has the following internal units and timings (WR and RR are...
A particular (fictional) CPU has the following internal units and timings: 1. IFD: Instruction fetch + decode : 160 ps 2. RR: Register read 80 ps 3. ALU: 240 ps 4. MA : memory access: 160 ps (assuming cache) 5. RW : register write : 80 ps There are 5 basic instruction types: 1. LOAD : IFD+RR+ALU+MA+RW 720 ps 2. STORE: IFD+RR+ALU+MA : 640 ps 3. ARITHMETIC: IFD+RR+ALU+RW : 560 4. BRANCH: IFD+RR+ALU : 480 ps 5. MEMOP: IFD+RR+MA+ALU+MA :...
Questions1. The function L is defined as L(1) = 2,L(2) = 1,L(3) = 3,L(4) = 4 and for n ≥ 4,L(n + 1) = L(n) + L(n − 1) + L(n − 2)L(n − 3)i.e., the (n + 1)-th value is given by the sum of the n-th, n − 1-th and n − 2-th values divided by the n − 3-th value.(a) Write an assembly program for computing the k-th value L(k), where k is an integer bigger than...