ASM program to find the length of the given string

Aim: – To write an assembly language program to find the length of the given string.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
MOV AX, DATA
MOV CS, AX
MOV DS, AX
MOV BX, 00
MOV CL, 00
LOOP:		MOV AL, A[BX]
CMP AL, 00
JE L1
INC BX
INC CL
JMP LOOP
L1:		DEC CL
MOV LEN, CL
END

Result: Length of the given string is obtained.

Chitra
Chitra

2 thoughts on “ASM program to find the length of the given string

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