<?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>Ring Counter | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/ring-counter/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:46:47 +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 Ring Counter</title>
		<link>https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-ring-counter/</link>
					<comments>https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-ring-counter/#comments</comments>
		
		<dc:creator><![CDATA[Ansten Lobo]]></dc:creator>
		<pubDate>Sat, 09 Jun 2012 09:46:47 +0000</pubDate>
				<category><![CDATA[Verilog HDL]]></category>
		<category><![CDATA[Verilog program]]></category>
		<category><![CDATA[vlsi]]></category>
		<category><![CDATA[Ring Counter]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=3246</guid>

					<description><![CDATA[<p>Verilog HDL Program for Ring Counter. module dff(q,d,c); output q; input d,c; reg q; initial q=1'b1; always @ (posedge c) q=d; endmodule module dff1(q,d,clk); output q; input d,clk; reg q; initial q=1'b0; always @ (posedge clk) q=d; endmodule module ring(q,clk); inout [3:0]q; input clk; dff u1(q[0],q[3],clk); dff1 u2(q[1],q[0],clk); dff1 u3(q[2],q[1],clk); dff1 u4(q[3],q[2],clk); endmodule</p>
<p>The post <a href="https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-ring-counter/">Verilog HDL Program for Ring Counter</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Verilog HDL Program for Ring Counter.</p>
<pre lang="Verilog" line="1">
module dff(q,d,c);
    output q;
    input d,c;
    reg q;
    initial   
     q=1'b1; 
    always @ (posedge c)
       q=d;
    endmodule

module dff1(q,d,clk);
    output q;
    input d,clk;
    reg q;
    initial 
    q=1'b0;
    always @ (posedge clk)
    q=d;
endmodule

module ring(q,clk);
    inout [3:0]q;
    input clk;
    dff u1(q[0],q[3],clk);
    dff1 u2(q[1],q[0],clk);
    dff1 u3(q[2],q[1],clk);
    dff1 u4(q[3],q[2],clk);
endmodule
</pre>
<figure id="attachment_3247" aria-describedby="caption-attachment-3247" style="width: 615px" class="wp-caption aligncenter"><img decoding="async" src="https://studentprojects.in/wp-content/uploads/2012/06/Simulated-Waveform-for-Ring-Counter.jpg" alt="Simulated Waveform for Ring Counter" title="Simulated Waveform for Ring Counter" width="615" height="39" class="size-full wp-image-3247" /><figcaption id="caption-attachment-3247" class="wp-caption-text">Simulated Waveform for Ring Counter</figcaption></figure><p>The post <a href="https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-ring-counter/">Verilog HDL Program for Ring Counter</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-ring-counter/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
	</channel>
</rss>
