Introduction of Fibonacci series

The Fibonacci series is a sequence of numbers in which each number is the sum of the two preceding numbers. The sequence starts with 0 and 1, and then each subsequent number is the sum of the previous two numbers. So, the first few numbers in the Fibonacci sequence are:

0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584, 4181.

The Fibonacci sequence is named after the Italian mathematician Leonardo Fibonacci, who introduced the sequence to the western world in his book Liber Abaci, published in 1202. The sequence appears in many areas of mathematics and science, such as geometry, biology, physics, and computer science, and has numerous interesting properties and applications.

8085 program to generate Fibonacci series

Problem – Write an assembly language program in 8085 microprocessor to generate Fibonacci series. Example – Assume Fibonacci series is stored at starting memory location 3050. 

Similar Reads

Introduction of Fibonacci series:

The Fibonacci series is a sequence of numbers in which each number is the sum of the two preceding numbers. The sequence starts with 0 and 1, and then each subsequent number is the sum of the previous two numbers. So, the first few numbers in the Fibonacci sequence are:...

Note – This program generates Fibonacci series in hexadecimal numbers. Algorithm –

Initialize register H with 30 and register L with 50, so that indirect memory M points to memory location 3050. Initialize register B with 00, register C with 08 and register D with 01. Move the content of B in M. Increment M by 1 so that M points to next memory location. Move the content of D in M. Move the content of B in accumulator A. Add the content of D in A. Move the content of D in B. Move the content of A in D. Increment M by 1 so that M points to next memory location. Move the content of A in M. Decrements C by 1. Jump to memory location 200C if ZF = 0 otherwise Halt the program....