Assembler
Write a procedure that produces N values in the Fibonacci number series and stores them in an array of quadword. Input parameters should be a pointer to an array of quadword, a counter of the number of values to generator.
(1) Write a test program that calls your procedure, passing N = 52. the first value in the array will be 1, and the last value will be 32,951,280,099.
(2) Create a new sequence that starts with 1 and 5 instead of 0 and 1.
The Fibonacci sequence will be: 1,1,2,3,5,8...and up until 32,951,280,099
The modified Fibonacci sequence will be: 1,5,6,11,17,28...and so on.
(3) Create an output listing file and upload it with your *asm showing both Fibonacci sequences.