8085 Program to Calculate the sum of a series of even numbers

In this program, we will write an 8085 Program to Calculate the sum of a series of even numbers in the 8085 microprocessor with a program flow chart and explanation of the program.

8085 Program to Calculate the sum of a series of even numbers

Program Statement

Write a program in the ALP of 8085 to calculate the sum of a series of even numbers. Assume that the length of the series is stored at memory location D000H and the series itself begins at memory location D001H. Store the result in memory location E000H.

Explanation of Program

  • Initialize the sum to zero. Load the count of numbers in register C. Initialize the pointer to start the series.
  • To check whether the number is even we will AND the number with 01 H. If the result of ANDing is zero it indicates that the number is even. We will add this even number to the initialized sum.
  • Decrement count. Increment source pointer to next location. Continue the process till the sum of all even numbers is found. Store the sum at memory location E000 Н.

Flow Chart of Program

8085 Program to Calculate the sum of a series of even numbers

Assembly Language Program

LabelInstructionComment
LDA D000H
MOV C, AInitialize counter
MVI B, 00HSum = 0
LXI H, D001HInitialize pointer
BACK:MOV A, MGet the number
ANI 01 HMask bit-1 to bit-7
JNZ SKIPDon’t add if the number is ODD
MOV A, BGet the sum
ADD MSum = sum + data
MOV B, AStore the result in B register
SKIP:INX HIncrement pointer
DCR CDecrement counter
JNZ BACKIf counter ≠ 0 , repeat
STA E000HStore the sum (result)
HLTTerminate program execution
Sr. No.Name of the 8085 Programs
1.Write a program to load the data into the accumulator and any register.
2.Write a program to exchange the contents of memory locations.
3.Add two 8-bit numbers.
4.Subtract two 8-bit numbers.
5.Add two 16-bit numbers.
6.Subtract two 16-bit numbers
7.Find the 1’s complement of a Number
8.Find the 2’s complement of a Number
9.8085 Program To Mask The Lower Nibble
10.8085 Program To Mask The Upper Nibble
11.8085 program to pack the two unpacked BCD numbers
12.8085 program to Unpack the two packed BCD numbers
13.8085 program to find the sum of a series of 8-bit numbers
14.8085 Program to sort the numbers in ascending order
15.8085 Program to sort the numbers in Descending order
16.8085 Program to Multiply Two 8-bit Numbers
17.8085 Program to Divide 16-bit number by 8-bit number
18.8085 Program to Find the Number of Negative Numbers in Array
19.8085 Program to Find Maximum Number in Array
20.8085 Program to count the number of 1’s in a register
21.8085 Program to Calculate the sum of a series of even numbers
22.8085 Program to find the square of numbers
23.8085 Program to find the smallest number in the array

Hello friends, my name is Trupal Bhavsar, I am the Writer and Founder of this blog. I am Electronics Engineer(2014 pass out), Currently working as Junior Telecom Officer(B.S.N.L.) also I do Project Development, PCB designing and Teaching of Electronics Subjects.

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.

telegram logo Join Our Telegram Group!