<?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>Shift Register | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/shift-register/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:42:56 +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 Serail In – Parallel Out Shift Register</title>
		<link>https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-serail-in-parallel-out-shift-register/</link>
					<comments>https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-serail-in-parallel-out-shift-register/#comments</comments>
		
		<dc:creator><![CDATA[Ansten Lobo]]></dc:creator>
		<pubDate>Sat, 09 Jun 2012 09:42:56 +0000</pubDate>
				<category><![CDATA[Verilog HDL]]></category>
		<category><![CDATA[verilog]]></category>
		<category><![CDATA[Shift Register]]></category>
		<category><![CDATA[vlsi]]></category>
		<category><![CDATA[Serail In – Parallel Out]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=3243</guid>

					<description><![CDATA[<p>Verilog HDL Program for Serail In – Parallel Out Shift Register. module sipo(sout,sin,clk); output [3:0]sout; input sin,clk; dff2 u1(sout[0],sin,clk); dff2 u2(sout[1],sout[0],clk); dff2 u3(sout[2],sout[1],clk); dff2 u4(sout[3],sout[2],clk); endmodule</p>
<p>The post <a href="https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-serail-in-parallel-out-shift-register/">Verilog HDL Program for Serail In – Parallel Out Shift Register</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Verilog HDL Program for Serail In – Parallel Out Shift Register.</p>
<pre lang="Verilog" line="1"> 
module sipo(sout,sin,clk);
    output [3:0]sout;
    input sin,clk;
    dff2 u1(sout[0],sin,clk);
    dff2 u2(sout[1],sout[0],clk);
    dff2 u3(sout[2],sout[1],clk);
    dff2 u4(sout[3],sout[2],clk);
endmodule
</pre>
<figure id="attachment_3244" aria-describedby="caption-attachment-3244" style="width: 615px" class="wp-caption aligncenter"><img decoding="async" src="https://studentprojects.in/wp-content/uploads/2012/06/Simulated-Waveform-for-Serail-In-–-Parallel-Out-Shift-Register.jpg" alt="Simulated Waveform for Serail In – Parallel Out Shift Register" title="Simulated Waveform for Serail In – Parallel Out Shift Register" width="615" height="68" class="size-full wp-image-3244" /><figcaption id="caption-attachment-3244" class="wp-caption-text">Simulated Waveform for Serail In – Parallel Out Shift Register</figcaption></figure><p>The post <a href="https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-serail-in-parallel-out-shift-register/">Verilog HDL Program for Serail In – Parallel Out Shift Register</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-serail-in-parallel-out-shift-register/feed/</wfw:commentRss>
			<slash:comments>12</slash:comments>
		
		
			</item>
		<item>
		<title>Verilog HDL Program for Parallel In – Parallel Out Shift Register</title>
		<link>https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-parallel-in-parallel-out-shift-register/</link>
					<comments>https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-parallel-in-parallel-out-shift-register/#comments</comments>
		
		<dc:creator><![CDATA[Ansten Lobo]]></dc:creator>
		<pubDate>Sat, 09 Jun 2012 09:39:51 +0000</pubDate>
				<category><![CDATA[Verilog HDL]]></category>
		<category><![CDATA[verilog]]></category>
		<category><![CDATA[Shift Register]]></category>
		<category><![CDATA[Parallel In – Parallel Out]]></category>
		<category><![CDATA[vlsi]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=3240</guid>

					<description><![CDATA[<p>Verilog HDL Program for Parallel In – Parallel Out Shift Register module pipo(sout,sin,clk); output [3:0]sout; input [3:0]sin; input clk; dff1 u1(sout[0],sin[0],clk); dff1 u2(sout[1],sin[1],clk); dff1 u3(sout[2],sin[2],clk); dff1 u4(sout[3],sin[3],clk); endmodule</p>
<p>The post <a href="https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-parallel-in-parallel-out-shift-register/">Verilog HDL Program for Parallel In – Parallel Out Shift Register</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Verilog HDL Program for Parallel In – Parallel Out Shift Register</p>
<pre lang="Verilog" line="1">
module pipo(sout,sin,clk);
    output [3:0]sout;
    input [3:0]sin;
    input clk;
    dff1 u1(sout[0],sin[0],clk);
    dff1 u2(sout[1],sin[1],clk);
    dff1 u3(sout[2],sin[2],clk);
    dff1 u4(sout[3],sin[3],clk);
endmodule
</pre>
<figure id="attachment_3241" aria-describedby="caption-attachment-3241" style="width: 523px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" src="https://studentprojects.in/wp-content/uploads/2012/06/Simulated-Waveform-for-Parallel-In-–-Parallel-Out-Shift-Register.jpg" alt="Simulated Waveform for Parallel In – Parallel Out Shift Register" title="Simulated Waveform for Parallel In – Parallel Out Shift Register" width="523" height="54" class="size-full wp-image-3241" /><figcaption id="caption-attachment-3241" class="wp-caption-text">Simulated Waveform for Parallel In – Parallel Out Shift Register</figcaption></figure><p>The post <a href="https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-parallel-in-parallel-out-shift-register/">Verilog HDL Program for Parallel In – Parallel Out Shift Register</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-parallel-in-parallel-out-shift-register/feed/</wfw:commentRss>
			<slash:comments>17</slash:comments>
		
		
			</item>
		<item>
		<title>Verilog HDL Program for Parallel In – Serial Out Shift Register</title>
		<link>https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-parallel-in-serial-out-shift-register/</link>
					<comments>https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-parallel-in-serial-out-shift-register/#comments</comments>
		
		<dc:creator><![CDATA[Ansten Lobo]]></dc:creator>
		<pubDate>Sat, 09 Jun 2012 09:35:45 +0000</pubDate>
				<category><![CDATA[Verilog HDL]]></category>
		<category><![CDATA[verilog]]></category>
		<category><![CDATA[HDL]]></category>
		<category><![CDATA[Parallel In – Serial Out]]></category>
		<category><![CDATA[Shift Register]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=3237</guid>

					<description><![CDATA[<p>Verilog HDL Program for Parallel In – Serial Out Shift Register. module piso1(sout,sin,clk); output sout; input [3:0]sin; input clk; wire [3:0]q; inv u1(p,sl); and1 u2(n,sin[1],p); and1 u3(r,sl,q[0]); or1 u4(s,n,r); and1 u5(t,sin[2],p); and1 u6(u,sl,q[1]); or1 u7(v,u,t); and1 u8(w,sin[3],p); and1 u9(y,sl,q[2]); or1 u10(z,w,y); dff1 u11(q[0],sin[0],clk); dff1 u12(q[1],s,clk); dff1 u13(q[2],v,clk); dff1 u14(q[3],z,clk); assign sout = q[3]; endmodule</p>
<p>The post <a href="https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-parallel-in-serial-out-shift-register/">Verilog HDL Program for Parallel In – Serial Out Shift Register</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Verilog HDL Program for Parallel In – Serial Out Shift Register.</p>
<pre lang="Verilog" line="1">
module piso1(sout,sin,clk);
    output sout;
    input [3:0]sin;
    input clk;
    wire [3:0]q;
    inv u1(p,sl);
    and1 u2(n,sin[1],p);
    and1 u3(r,sl,q[0]);
    or1 u4(s,n,r);
    and1 u5(t,sin[2],p);
    and1 u6(u,sl,q[1]);
    or1 u7(v,u,t);
    and1 u8(w,sin[3],p);
    and1 u9(y,sl,q[2]);
    or1 u10(z,w,y);
    dff1 u11(q[0],sin[0],clk);
    dff1 u12(q[1],s,clk);
    dff1 u13(q[2],v,clk);
    dff1 u14(q[3],z,clk);
    assign sout = q[3];
endmodule
</pre>
<figure id="attachment_3238" aria-describedby="caption-attachment-3238" style="width: 615px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" src="https://studentprojects.in/wp-content/uploads/2012/06/Simulated-Waveform-for-Parallel-In-–-Serial-Out-Shift-Register.jpg" alt="Simulated Waveform for Parallel In – Serial Out Shift Register" title="Simulated Waveform for Parallel In – Serial Out Shift Register" width="615" height="186" class="size-full wp-image-3238" /><figcaption id="caption-attachment-3238" class="wp-caption-text">Simulated Waveform for Parallel In – Serial Out Shift Register</figcaption></figure><p>The post <a href="https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-parallel-in-serial-out-shift-register/">Verilog HDL Program for Parallel In – Serial Out Shift Register</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-parallel-in-serial-out-shift-register/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
	</channel>
</rss>
