<?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>BCD Adder | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/bcd-adder/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Sat, 09 Jun 2012 09:02:00 +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>Verilog HDL Program for BCD Adder using Parallel Adder</title>
		<link>https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-bcd-adder-using-parallel-adder/</link>
					<comments>https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-bcd-adder-using-parallel-adder/#respond</comments>
		
		<dc:creator><![CDATA[Ansten Lobo]]></dc:creator>
		<pubDate>Sat, 09 Jun 2012 04:57:22 +0000</pubDate>
				<category><![CDATA[Verilog HDL]]></category>
		<category><![CDATA[Parallel Adder]]></category>
		<category><![CDATA[BCD Adder]]></category>
		<category><![CDATA[Verilog programs]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=3171</guid>

					<description><![CDATA[<p>VHDL Program for BCD Adder using Parallel Adder. module bcdas(s,c,a,b); output [3:0]s; output c; input [3:0]a,b; wire [3:0]x; wire z,y,co,c1,k; parad4 u1(x,c1,a,b); and1 u2(y,x[3],x[2]); and1 u3(z,x[1],x[3]); or1 u4(k,z,y); or1 u5(c,k,c1); parad4 u6(s,co,x,{1'b0,c,c,1'b0}); endmodule</p>
<p>The post <a href="https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-bcd-adder-using-parallel-adder/">Verilog HDL Program for BCD Adder using Parallel Adder</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>VHDL Program for BCD Adder using Parallel Adder.</p>
<pre lang="VHDL" line="1">
    module bcdas(s,c,a,b);
    output [3:0]s;
    output c;
    input [3:0]a,b;
    wire [3:0]x;
    wire z,y,co,c1,k;
    parad4 u1(x,c1,a,b);
    and1 u2(y,x[3],x[2]);
    and1 u3(z,x[1],x[3]);
    or1 u4(k,z,y);
    or1 u5(c,k,c1);
    parad4 u6(s,co,x,{1'b0,c,c,1'b0});
endmodule
</pre>
<figure id="attachment_3172" aria-describedby="caption-attachment-3172" style="width: 630px" class="wp-caption aligncenter"><a href="https://studentprojects.in/wp-content/uploads/2012/06/Simulated-waveform-for-BCD-Adder.jpg"><img decoding="async" class=" wp-image-3172  " title="Simulated waveform for BCD Adder" src="https://studentprojects.in/wp-content/uploads/2012/06/Simulated-waveform-for-BCD-Adder.jpg" alt="Simulated waveform for BCD Adder" width="630" height="162" /></a><figcaption id="caption-attachment-3172" class="wp-caption-text">Simulated waveform for BCD Adder</figcaption></figure><p>The post <a href="https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-bcd-adder-using-parallel-adder/">Verilog HDL Program for BCD Adder using Parallel Adder</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-bcd-adder-using-parallel-adder/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
