<?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>R-S Flip Flops | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/r-s-flip-flops/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:59 +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 R-S Flip Flops</title>
		<link>https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-r-s-flip-flops/</link>
					<comments>https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-r-s-flip-flops/#comments</comments>
		
		<dc:creator><![CDATA[Ansten Lobo]]></dc:creator>
		<pubDate>Sat, 09 Jun 2012 06:30:04 +0000</pubDate>
				<category><![CDATA[Verilog HDL]]></category>
		<category><![CDATA[lab programs]]></category>
		<category><![CDATA[R-S Flip Flops]]></category>
		<category><![CDATA[Verilog programs]]></category>
		<category><![CDATA[Verilog lab]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=3176</guid>

					<description><![CDATA[<p>A flip-flop or latch is a circuit that has two stable states and can be used to store state information. The circuit can be made to change state by signals applied to one or more control inputs and will have one or two outputs. It is the basic storage element in sequential logic. Flip-flops and</p>
<p>The post <a href="https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-r-s-flip-flops/">Verilog HDL Program for R-S Flip Flops</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>A flip-flop or latch is a circuit that has two stable states and can be used to store state information. The circuit can be made to change state by signals applied to one or more control inputs and will have one or two outputs. It is the basic storage element in sequential logic. Flip-flops and latches are a fundamental building block of digital electronics systems used in computers, communications, and many other types of systems.</p>
<p>When using static gates as building blocks, the most fundamental latch is the simple SR latch, where S and R stand for set and reset. It can be constructed from a pair of cross-coupled NOR logic gates. The stored bit is present on the output marked Q.</p>
<p>While the S and R inputs are both low, feedback maintains the Q and Q outputs in a constant state, with Q the complement of Q. If S (Set) is pulsed high while R (Reset) is held low, then the Q output is forced high, and stays high when S returns to low; similarly, if R is pulsed high while S is held low, then the Q output is forced low, and stays low when R returns to low.<br />
<figure id="attachment_3177" aria-describedby="caption-attachment-3177" style="width: 220px" class="wp-caption alignnone"><img decoding="async" src="https://studentprojects.in/wp-content/uploads/2012/06/RS-Flip-Flop.gif" alt="RS Flip Flop" title="RS Flip Flop" width="220" height="161" class="size-full wp-image-3177" /><figcaption id="caption-attachment-3177" class="wp-caption-text">RS Flip Flop</figcaption></figure></p>
<pre lang="VHDL" line="1">
module srff(q,q1,r,s,clk);
	output q,q1;
	input r,s,clk;
	reg q,q1;
	initial
	begin
		q=1'b0;
		q1=1'b1;
	end
	always @(posedge clk)
	  begin
	  case({s,r})
		 {1'b0,1'b0}: begin q=q; q1=q1; end
		 {1'b0,1'b1}: begin q=1'b0; q1=1'b1; end
		 {1'b1,1'b0}: begin q=1'b1; q1=1'b0; end
		 {1'b1,1'b1}: begin q=1'bx; q=1'bx; end
	endcase
	end
endmodule
</pre>
<figure id="attachment_3178" aria-describedby="caption-attachment-3178" style="width: 615px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" src="https://studentprojects.in/wp-content/uploads/2012/06/Simulated-waveform-for-S-R-Flip-Flop.jpg" alt="Simulated waveform for S-R Flip Flop" title="Simulated waveform for S-R Flip Flop" width="615" height="88" class="size-full wp-image-3178" /><figcaption id="caption-attachment-3178" class="wp-caption-text">Simulated waveform for S-R Flip Flop</figcaption></figure><p>The post <a href="https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-r-s-flip-flops/">Verilog HDL Program for R-S Flip Flops</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-r-s-flip-flops/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
