<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>microprocessor | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/microprocessor-2/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Mon, 14 Mar 2022 08:39:07 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>ASM program to count number of positive and negative numbers from a given series of numbers</title>
		<link>https://studentprojects.in/electronics/microprocessor/asm-program-to-count-number-of-positive-and-negative-numbers-from-a-given-series-of-numbers/</link>
					<comments>https://studentprojects.in/electronics/microprocessor/asm-program-to-count-number-of-positive-and-negative-numbers-from-a-given-series-of-numbers/#comments</comments>
		
		<dc:creator><![CDATA[Chitra]]></dc:creator>
		<pubDate>Mon, 04 Jun 2012 09:35:50 +0000</pubDate>
				<category><![CDATA[Microprocessor]]></category>
		<category><![CDATA[microprocessor]]></category>
		<category><![CDATA[ASM program]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=3116</guid>

					<description><![CDATA[<p>Aim: &#8211; To write an assembly language program to count number of positive and negative numbers from a given series of numbers. MOV AX, DATA MOV DS, AX 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</p>
<p>The post <a href="https://studentprojects.in/electronics/microprocessor/asm-program-to-count-number-of-positive-and-negative-numbers-from-a-given-series-of-numbers/">ASM program to count number of positive and negative numbers from a given series of numbers</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Aim: &#8211;   To write an assembly language program to count number of positive and negative numbers from a given series of numbers.</p>
<pre lang="ASM" line="1">
MOV AX, DATA
MOV DS, AX
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 POS, DL
MOV NEG, BL
END
</pre>
<p><strong>Result</strong>: The numbers of positive and negative numbers are counted from the given series.</p><p>The post <a href="https://studentprojects.in/electronics/microprocessor/asm-program-to-count-number-of-positive-and-negative-numbers-from-a-given-series-of-numbers/">ASM program to count number of positive and negative numbers from a given series of numbers</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/electronics/microprocessor/asm-program-to-count-number-of-positive-and-negative-numbers-from-a-given-series-of-numbers/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>ASM program to count the number of even and odd numbers from a given series</title>
		<link>https://studentprojects.in/electronics/microprocessor/asm-program-to-count-the-number-of-even-and-odd-numbers-from-a-given-series/</link>
					<comments>https://studentprojects.in/electronics/microprocessor/asm-program-to-count-the-number-of-even-and-odd-numbers-from-a-given-series/#comments</comments>
		
		<dc:creator><![CDATA[Chitra]]></dc:creator>
		<pubDate>Mon, 04 Jun 2012 09:32:51 +0000</pubDate>
				<category><![CDATA[Microprocessor]]></category>
		<category><![CDATA[microprocessor]]></category>
		<category><![CDATA[ASM program]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=3114</guid>

					<description><![CDATA[<p>Aim: &#8211; To write an assembly language program to count the number of even and odd numbers from a given series. 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</p>
<p>The post <a href="https://studentprojects.in/electronics/microprocessor/asm-program-to-count-the-number-of-even-and-odd-numbers-from-a-given-series/">ASM program to count the number of even and odd numbers from a given series</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Aim: &#8211;   To write an assembly language program to count the number of even and odd numbers from a given series.</p>
<pre lang="ASM" line="1">
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
</pre>
<p><strong>Result</strong>: The numbers of even and odd numbers are counted from the given series.</p><p>The post <a href="https://studentprojects.in/electronics/microprocessor/asm-program-to-count-the-number-of-even-and-odd-numbers-from-a-given-series/">ASM program to count the number of even and odd numbers from a given series</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/electronics/microprocessor/asm-program-to-count-the-number-of-even-and-odd-numbers-from-a-given-series/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>ASM program to calculate arithmetic mean of ‘N’ numbers</title>
		<link>https://studentprojects.in/electronics/microprocessor/asm-program-to-calculate-arithmetic-mean-of-n-numbers/</link>
					<comments>https://studentprojects.in/electronics/microprocessor/asm-program-to-calculate-arithmetic-mean-of-n-numbers/#comments</comments>
		
		<dc:creator><![CDATA[Chitra]]></dc:creator>
		<pubDate>Mon, 04 Jun 2012 09:30:27 +0000</pubDate>
				<category><![CDATA[Microprocessor]]></category>
		<category><![CDATA[microprocessor]]></category>
		<category><![CDATA[ASM program]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=3112</guid>

					<description><![CDATA[<p>Aim: &#8211; To write an assembly language program to calculate arithmetic mean of ‘N’ numbers. 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</p>
<p>The post <a href="https://studentprojects.in/electronics/microprocessor/asm-program-to-calculate-arithmetic-mean-of-n-numbers/">ASM program to calculate arithmetic mean of ‘N’ numbers</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Aim: &#8211;   To write an assembly language program to calculate arithmetic mean of ‘N’ numbers.</p>
<pre lang="ASM" line="1">
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
</pre>
<p><strong>Result</strong>: Arithmetic mean of given ‘n’ numbers is obtained.</p><p>The post <a href="https://studentprojects.in/electronics/microprocessor/asm-program-to-calculate-arithmetic-mean-of-n-numbers/">ASM program to calculate arithmetic mean of ‘N’ numbers</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/electronics/microprocessor/asm-program-to-calculate-arithmetic-mean-of-n-numbers/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>ASM program to store successive numbers from 00H to FFH in successive memory locations</title>
		<link>https://studentprojects.in/electronics/microprocessor/asm-program-to-store-successive-numbers-from-00h-to-ffh-in-successive-memory-locations/</link>
					<comments>https://studentprojects.in/electronics/microprocessor/asm-program-to-store-successive-numbers-from-00h-to-ffh-in-successive-memory-locations/#comments</comments>
		
		<dc:creator><![CDATA[Chitra]]></dc:creator>
		<pubDate>Sun, 03 Jun 2012 15:20:55 +0000</pubDate>
				<category><![CDATA[Microprocessor]]></category>
		<category><![CDATA[microprocessor]]></category>
		<category><![CDATA[ASM program]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=3082</guid>

					<description><![CDATA[<p>Aim: &#8211; To write an assembly language program to store successive numbers from 00H to FFH in successive memory locations. MOV AX, DATA MOV DS, AX XOR AL, AL LEA SI, VAR MOV CX, 0100 NEXT: MOV [SI], AL INC AL INC SI LOOP NEXT END Result: Successive numbers are stored in given successive memory</p>
<p>The post <a href="https://studentprojects.in/electronics/microprocessor/asm-program-to-store-successive-numbers-from-00h-to-ffh-in-successive-memory-locations/">ASM program to store successive numbers from 00H to FFH in successive memory locations</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Aim: &#8211;   To write an assembly language program to store successive numbers from 00H to FFH in successive memory locations.</p>
<pre lang="ASM" line="1">
MOV AX, DATA
MOV DS, AX
XOR AL, AL
LEA SI, VAR
MOV CX, 0100
NEXT: 	MOV [SI], AL
INC AL
INC SI
LOOP NEXT
END
</pre>
<p><strong>Result</strong>: Successive numbers are stored in given successive memory locations from00H to FFH.</p><p>The post <a href="https://studentprojects.in/electronics/microprocessor/asm-program-to-store-successive-numbers-from-00h-to-ffh-in-successive-memory-locations/">ASM program to store successive numbers from 00H to FFH in successive memory locations</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/electronics/microprocessor/asm-program-to-store-successive-numbers-from-00h-to-ffh-in-successive-memory-locations/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>ASM program to compare two given strings</title>
		<link>https://studentprojects.in/electronics/microprocessor/asm-program-to-compare-two-given-strings/</link>
					<comments>https://studentprojects.in/electronics/microprocessor/asm-program-to-compare-two-given-strings/#comments</comments>
		
		<dc:creator><![CDATA[Chitra]]></dc:creator>
		<pubDate>Sun, 03 Jun 2012 15:18:42 +0000</pubDate>
				<category><![CDATA[Microprocessor]]></category>
		<category><![CDATA[microprocessor]]></category>
		<category><![CDATA[ASM program]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=3080</guid>

					<description><![CDATA[<p>Aim: &#8211; To write an assembly language program to comparing two given strings. MOV AX, DATA MOV DS, AX MOV ES, AX CID MOV CX, 07 LEA SI, SR1 LEA DI, SR2 REP CMP, SB JB L1 L1: MOV BH, 00 END Result: Two given strings are compared.</p>
<p>The post <a href="https://studentprojects.in/electronics/microprocessor/asm-program-to-compare-two-given-strings/">ASM program to compare two given strings</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Aim: &#8211;   To write an assembly language program to comparing two given strings.</p>
<pre lang="ASM" line="1">MOV AX, DATA
MOV DS, AX
MOV ES, AX
CID
MOV CX, 07
LEA SI, SR1
LEA DI, SR2
REP CMP, SB
JB L1
L1: 	MOV BH, 00
END     
</pre>
<p><strong>Result</strong>: Two given strings are compared.</p><p>The post <a href="https://studentprojects.in/electronics/microprocessor/asm-program-to-compare-two-given-strings/">ASM program to compare two given strings</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/electronics/microprocessor/asm-program-to-compare-two-given-strings/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>ASM program to reverse the given string</title>
		<link>https://studentprojects.in/electronics/microprocessor/asm-program-to-reverse-the-given-string/</link>
					<comments>https://studentprojects.in/electronics/microprocessor/asm-program-to-reverse-the-given-string/#respond</comments>
		
		<dc:creator><![CDATA[Chitra]]></dc:creator>
		<pubDate>Sun, 03 Jun 2012 15:16:39 +0000</pubDate>
				<category><![CDATA[Microprocessor]]></category>
		<category><![CDATA[microprocessor]]></category>
		<category><![CDATA[ASM program]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=3078</guid>

					<description><![CDATA[<p>Aim: &#8211; To write an assembly language program to reverse the given string. MOV AX, DATA MOV DS, AX MOV ES, AX MOV CL, 03 LEA SI, A MOV AX, 04 ADD DI, AX L1: MOV AL, [SI] XCHG AL, [DI] MOV [SI], AL INC SI DEC DI LOOP L1 END Result: The given string</p>
<p>The post <a href="https://studentprojects.in/electronics/microprocessor/asm-program-to-reverse-the-given-string/">ASM program to reverse the given string</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Aim: &#8211;   To write an assembly language program to reverse the given string.</p>
<pre lang="ASM" line="1">
MOV AX, DATA
MOV DS, AX
MOV ES, AX
MOV CL, 03
LEA SI, A
MOV AX, 04
ADD DI, AX
L1:	MOV AL, [SI]
XCHG AL, [DI]
MOV [SI], AL
INC SI
DEC DI
LOOP L1
END
</pre>
<p><strong>Result</strong>: The given string is reversed.</p><p>The post <a href="https://studentprojects.in/electronics/microprocessor/asm-program-to-reverse-the-given-string/">ASM program to reverse the given string</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/electronics/microprocessor/asm-program-to-reverse-the-given-string/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>ASM program to find a letter in the given string</title>
		<link>https://studentprojects.in/electronics/microprocessor/asm-program-to-find-a-letter-in-the-given-string/</link>
					<comments>https://studentprojects.in/electronics/microprocessor/asm-program-to-find-a-letter-in-the-given-string/#respond</comments>
		
		<dc:creator><![CDATA[Chitra]]></dc:creator>
		<pubDate>Sun, 03 Jun 2012 15:13:36 +0000</pubDate>
				<category><![CDATA[Microprocessor]]></category>
		<category><![CDATA[microprocessor]]></category>
		<category><![CDATA[ASM program]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=3076</guid>

					<description><![CDATA[<p>Aim: &#8211; To write an assembly language program to find a letter in the given string. MOV AX, DATA MOV DS, AX MOV ES, AX MOV BX, 00 MOV CL, 00 LOOK: MOV AL, A[BX] CMP AL, KEY JE L1 INC BX CMP AL, 00 JNE LOOK JMP L2 L1: MOV CL, 01 END Result:</p>
<p>The post <a href="https://studentprojects.in/electronics/microprocessor/asm-program-to-find-a-letter-in-the-given-string/">ASM program to find a letter in the given string</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Aim: &#8211;   To write an assembly language program to find a letter in the given string.</p>
<pre lang="ASM" line="1">
MOV AX, DATA
MOV DS, AX
MOV ES, AX
MOV BX, 00
MOV CL, 00
LOOK:		MOV AL, A[BX]
CMP AL, KEY
JE L1
INC BX
CMP AL, 00
JNE LOOK
JMP L2
L1:		MOV CL, 01
END 
</pre>
<p><strong>Result</strong>: Given letter is found from the given string.</p><p>The post <a href="https://studentprojects.in/electronics/microprocessor/asm-program-to-find-a-letter-in-the-given-string/">ASM program to find a letter in the given string</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/electronics/microprocessor/asm-program-to-find-a-letter-in-the-given-string/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>ASM program to find the factorial of the given number</title>
		<link>https://studentprojects.in/electronics/microprocessor/asm-program-to-find-the-factorial-of-the-given-number-2/</link>
					<comments>https://studentprojects.in/electronics/microprocessor/asm-program-to-find-the-factorial-of-the-given-number-2/#respond</comments>
		
		<dc:creator><![CDATA[Chitra]]></dc:creator>
		<pubDate>Sun, 03 Jun 2012 15:09:57 +0000</pubDate>
				<category><![CDATA[Microprocessor]]></category>
		<category><![CDATA[microprocessor]]></category>
		<category><![CDATA[ASM program]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=3074</guid>

					<description><![CDATA[<p>Aim: &#8211; To write an assembly language program to find the factorial of the given number. MOV CL, X DEC CL MOV BX, 00 INC BX MOV A[BX], 01 MOV AL, 00 MOV DL, 01 L1: INC BX ADD AL, DL MOV A[BX], AL MOV AL, DL MOV DL, A[BX] LOOP L1 END Result: Fibonacci</p>
<p>The post <a href="https://studentprojects.in/electronics/microprocessor/asm-program-to-find-the-factorial-of-the-given-number-2/">ASM program to find the factorial of the given number</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Aim: &#8211;   To write an assembly language program to find the factorial of the given number.</p>
<pre lang="ASM" line="1">MOV CL, X
DEC CL 
MOV BX, 00
INC BX
MOV A[BX], 01
MOV AL, 00
MOV DL, 01
L1:		INC BX 
ADD AL, DL
MOV A[BX], AL
MOV AL, DL
MOV DL, A[BX]	
LOOP L1
END
</pre>
<p><strong>Result</strong>: Fibonacci series of a given number is obtained.</p><p>The post <a href="https://studentprojects.in/electronics/microprocessor/asm-program-to-find-the-factorial-of-the-given-number-2/">ASM program to find the factorial of the given number</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/electronics/microprocessor/asm-program-to-find-the-factorial-of-the-given-number-2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>ASM program to find the factorial of the given number</title>
		<link>https://studentprojects.in/electronics/microprocessor/asm-program-to-find-the-factorial-of-the-given-number/</link>
					<comments>https://studentprojects.in/electronics/microprocessor/asm-program-to-find-the-factorial-of-the-given-number/#comments</comments>
		
		<dc:creator><![CDATA[Chitra]]></dc:creator>
		<pubDate>Sun, 03 Jun 2012 15:06:49 +0000</pubDate>
				<category><![CDATA[Microprocessor]]></category>
		<category><![CDATA[ASM program]]></category>
		<category><![CDATA[microprocessor]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=3072</guid>

					<description><![CDATA[<p>Aim: &#8211; To write an assembly language program to find the factorial of the given number. (1) MOV AL, 01 MOV BL, X LOOK: MUL BL DEC BL JNZ LOOK MOV FACT, AL END (2) MOV AL, 01 MOV BL, X LOOK: JZ NEXT MUL BL JNZ LOOK NEXT: MOV FACT, AL END (3) MOV</p>
<p>The post <a href="https://studentprojects.in/electronics/microprocessor/asm-program-to-find-the-factorial-of-the-given-number/">ASM program to find the factorial of the given number</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Aim: &#8211;   To write an assembly language program to find the factorial of the given number.</p>
<pre lang="ASM" line="1">
(1)
MOV AL, 01
MOV BL, X
LOOK:	MUL BL
DEC BL 
JNZ LOOK
MOV FACT, AL	
END

(2)
MOV AL, 01
MOV BL, X
LOOK:	JZ NEXT
MUL BL
JNZ LOOK
NEXT:	MOV FACT, AL	
END

(3)
MOV AL, 01
MOV CL, X
LOOK:	JZ NEXT
MUL CL 
LOOP LOOK
NEXT:        MOV FACT, AL	
END
</pre>
<p><strong>Result</strong>: Factorial of a given number is obtained.</p><p>The post <a href="https://studentprojects.in/electronics/microprocessor/asm-program-to-find-the-factorial-of-the-given-number/">ASM program to find the factorial of the given number</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/electronics/microprocessor/asm-program-to-find-the-factorial-of-the-given-number/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>ASM program to find the length of the given string</title>
		<link>https://studentprojects.in/electronics/microprocessor/asm-program-to-find-the-length-of-the-given-string/</link>
					<comments>https://studentprojects.in/electronics/microprocessor/asm-program-to-find-the-length-of-the-given-string/#comments</comments>
		
		<dc:creator><![CDATA[Chitra]]></dc:creator>
		<pubDate>Sun, 03 Jun 2012 15:01:32 +0000</pubDate>
				<category><![CDATA[Microprocessor]]></category>
		<category><![CDATA[ASM program]]></category>
		<category><![CDATA[microprocessor]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=3070</guid>

					<description><![CDATA[<p>Aim: &#8211; To write an assembly language program to find the length of the given string. 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</p>
<p>The post <a href="https://studentprojects.in/electronics/microprocessor/asm-program-to-find-the-length-of-the-given-string/">ASM program to find the length of the given string</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Aim: &#8211;   To write an assembly language program to find the length of the given string.</p>
<pre lang="ASM" line="1">
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			
</pre>
<p><strong>Result</strong>: Length of the given string is obtained.</p><p>The post <a href="https://studentprojects.in/electronics/microprocessor/asm-program-to-find-the-length-of-the-given-string/">ASM program to find the length of the given string</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/electronics/microprocessor/asm-program-to-find-the-length-of-the-given-string/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
	</channel>
</rss>
