Saturday, June 9th, 2012 »
Posted By Ansten Lobo » Total 0 Comment
Verilog HDL Program for Random Number Generator. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 module tff(q,t,c); output q; input t,c; reg [...]
Saturday, June 9th, 2012 »
Posted By Ansten Lobo » Total 0 Comment
Verilog HDL Program for the function f=x>>3 + x
Saturday, June 9th, 2012 »
Posted By Ansten Lobo » Total 3 Comments
Verilog HDL Program for Ring Counter. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 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; [...]
Saturday, June 2nd, 2012 »
Posted By Ansten Lobo » Total 1 Comment
A decoder is a device which does the reverse operation of an encoder, undoing the encoding so that the original information can be retrieved. The same method used to encode is usually just reversed in order to decode. It is a combinational circuit that converts binary information from n input lines to a maximum of [...]
Saturday, June 2nd, 2012 »
Posted By Ansten Lobo » Total 0 Comment
A 4 bit binary parallel adder can be formed by cascading four full adder units. The carry of each stage is connected to the next unit as the carry in (That is the third input). 1 2 3 4 5 6 7 8 9 10 module parad4(a,c,p,q); output [3:0]a; output c; input [3:0]p,q; wire c1,c2,c3; [...]
Thursday, May 31st, 2012 »
Posted By Ansten Lobo » Total 0 Comment
The half adder adds two one-bit binary numbers A and B. It has two outputs, S and C (the value theoretically carried on to the next addition); the final sum is 2C + S. The simplest half-adder design, pictured on below, incorporates an XOR gate for S and an AND gate for C. With the [...]
This is the one stop educational site for all Electronic and Computer students. If you want to learn something new then we are here to help. We work on Microcontroller projects, Basic Electronics, Digital electronics, Computer projects and also in basic c/c++ programs.
#Home #Sitemap #Resources #Terms of Use
Copyright©2012 electrofriends.com All Rights Reserved
Contact:info@electrofriends.com