ASM program to calculate arithmetic mean of ‘N’ numbers

Monday, June 4th, 2012

Aim: – To write an assembly language program to calculate arithmetic mean of ‘N’ numbers.

1
2
3
4
5
6
7
8
9
10
11
12
13
MOV AX, DATA
MOV DS, AX
XOR AL, AL
LEA SI, NUM
MOV CX, 0005
MOV AH, 00
NEXT: 	ADD AL, [SI]
INC SI
LOOP NEXT
MOV CL, 05
DIV CL
MOV SUM, AL
END

Result: Arithmetic mean of given ‘n’ numbers is obtained.

Avatar of chitra

Author Name :
chitra

Total : 0 Comment


Leave a Reply

Question and Answer
C/C++ Unix & Linux Wordpress
Source codes
C C++ Java

Free email signup

Email: