<?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>or gate | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/or-gate/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 08:59:44 +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 OR Logic gate</title>
		<link>https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-or-logic-gate/</link>
					<comments>https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-or-logic-gate/#respond</comments>
		
		<dc:creator><![CDATA[Ansten Lobo]]></dc:creator>
		<pubDate>Thu, 31 May 2012 13:17:37 +0000</pubDate>
				<category><![CDATA[Verilog HDL]]></category>
		<category><![CDATA[or gate]]></category>
		<category><![CDATA[verilog]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=2972</guid>

					<description><![CDATA[<p>The OR gate is a digital logic gate that implements logical disjunction. A HIGH output (1) results if one or both the inputs to the gate are HIGH (1). If neither input is HIGH, a LOW output (0) results. In another sense, the function of OR effectively finds the maximum between two binary digits, just</p>
<p>The post <a href="https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-or-logic-gate/">Verilog HDL program for OR Logic gate</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>The OR gate is a digital logic gate that implements logical disjunction. A HIGH output (1) results if one or both the inputs to the gate are HIGH (1). If neither input is HIGH, a LOW output (0) results. In another sense, the function of OR effectively finds the maximum between two binary digits, just as the complementary AND function finds the minimum.</p>
<pre lang="vhdl" line="1">
module or1 (c,a,b);
   output c;
   input a,b;
   assign c=a|b;
endmodule
</pre>
<figure id="attachment_2974" aria-describedby="caption-attachment-2974" style="width: 614px" class="wp-caption aligncenter"><img decoding="async" src="https://studentprojects.in/wp-content/uploads/2012/05/Simulated-waveform-for-Or-Gate.jpg" alt="Simulated waveform for OR Gate" title="Simulated waveform for OR Gate" width="614" height="63" class="size-full wp-image-2974" /><figcaption id="caption-attachment-2974" class="wp-caption-text">Simulated waveform for OR Gate</figcaption></figure><p>The post <a href="https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-or-logic-gate/">Verilog HDL program for OR Logic gate</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-or-logic-gate/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
