ASM program to count the number of even and odd numbers from a given series

Aim: – To write an assembly language program to count the number of even and odd numbers from a given series.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
MOV CL, 05
XOR BL, BL
XOR DL, DL
LEA SI, SERIES
NEXT2:	MOV AL, [SI]
SHR AL, O1
JNC NEXT1
 
INC BL
JMP NEXT3
NEXT1:	INC DL
NEXT3:	INC SI
DEC CL
JNZ NEXT2
MOV EVEN, DL
MOV ODD, BL
END

Result: The numbers of even and odd numbers are counted from the given series.

Chitra
Chitra

2 thoughts on “ASM program to count the number of even and odd numbers from a given series

Leave a Reply

Your email address will not be published. Required fields are marked *

Get the latest updates on your inbox

Be the first to receive the latest updates from Codesdoc by signing up to our email subscription.

    StudentProjects.in