Write an assembly program that computes Fibonacci numbers 2-5.
a. Assume Fib(0)=0 and Fib(1)=1.
b. Store Fib(2) in EAX, Fib(3) in EBX, Fib(4) in ECX and Fib(5) in EDX.
c. Use a LOOP instruction to solve this problem.
d. Execute a DumpRegs to display the results.