Question: Write an assembly language program in MASM to perform the following tasks: Generate the first N numbers of the sequence: 1, 1, 2, 3, 5,
Write an assembly language program in MASM to perform the following tasks:
Generate the first N numbers of the sequence: 1, 1, 2, 3, 5, 8, 13 ; the sequence is generated as with seed values 1 , 1 You will define a DWORD array to store the sequence, and define the following procedures: 1) main: prompt users to enter the length of the sequence N; call genSeq to generate the sequence of N integers; call sumSeq to calculate the sum of the sequence; call displaySeq to display the sequence and the sum. 2) genSeq: generate the sequence. 3) sumSeq: calculate the sum of the sequence. 4) displaySeq: display the sequence and the sum.
The sequence is saved in a DWORD array
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
