Home
Register Here
Home
VLSI
VHDL
Verilog
System Verilog
Advance Digital
System Architecture
CMOS logic
Misc.
Discussion
Problem of the week
Request Program
Requested Program
Solved
Other
Static Timing Analysis
Introduction to ASIC
Synthesis
Misc
Contact us
Facebook
Google+
Register Here
Downloads
Android Downloads
Bollywood lrc
Feed
Enter your email address:
Delivered by
FeedBurner
Tuesday, April 9, 2013
D latch verilog code
1:28 AM
Verilog
,
verilog_examples
No comments
module d_latch(q, q_bar, d_in, enb);
output q,q_bar;
input d_in;
input enb;
nand g1 (s, d_in, enb),
g2 (r, d_bar, enb);
not g3 (d_bar,d_in);
nand g4 (q, s, q_bar);
nand g5 (q_bar, r, q);
endmodule
Email This
BlogThis!
Share to X
Share to Facebook
Share to Pinterest
Newer Post
Older Post
Home
0 comments:
Post a Comment
Subscribe to:
Post Comments (Atom)
Social Profiles
Popular
Tags
Blog Archives
Total Pageviews
ALU in verilog with test bench
///////////////////////////////////////////////////////////////////////////////////// // Author : Sidharth //Permission : This co...
Synchronous FIFO with synchronous read and write with test bench in verilog
///////////////////////////////////////////////////////////////////////////////////// // Author : Sidharth(DVLSI 31) //Permission...
16X4 MEMORY WITH BI DIRECTIONAL PORT IN VERILOG WITH TEST BENCH
///////////////////////////////////////////////////////////////////////////////////// // Author : Sidharth(DVLSI 31) //Permission ...
Simple arbiter example in verilog
////////////////////////////////////////////////////////////////////////////// // Design Name : Design a Priority resolver for four request...
4:16 decoder verilog code
module decoder_4x16 (d_out, d_in); output [15:0] d_out; input [3:0] d_in; parameter tmp = 16'b0000_0000_0000_0001; ...
Single Port RAM in VHDL using generate statement
////////////////////////////////////////////////////////////////////////////// // Author : Sidharth(DVLSI 31) //Permission : This cod...
Universal shifter in verilog with test bench
///////////////////////////////////////////////////////////////////////////////////// // Author : Sidharth(DVLSI 31) //Permission ...
Vending Machine in Verilog
////////////////////////////////////////////////////////////////////////////// // Design Name : Vending Machine // File Name : vending.v ...
Run multiple testcases in System Verilog in Questasim
Let there are two test cases. testcase1 and testcase2 1-First complie them using the command(for questasim) vlog top.sv test_case1....
4x1 mux primitive example in verilog
/////////////////////////////////////////////////////////////////////////////////////////////// // Author : Sidharth(DVLSI 31) //Permi...
About Me
IroncladSid
View my complete profile
Powered by
Blogger
.
Labels
Misc
(1)
SV
(2)
System_verilog
(2)
Verilog
(15)
verilog_examples
(16)
VHDL
(8)
VHDL_example
(15)
Blog Archive
▼
2013
(33)
►
October
(2)
►
June
(5)
►
May
(7)
▼
April
(12)
Finite state machine -pattern checker in vhdl
User defined package in vhdl example
4 bit full adder verilog code
D latch verilog code
4:16 decoder verilog code
Priority encoder verilog code
Parity generator structural vhdl code
Barrel shifter with multi cycle and textio vhdl code
Vhdl code for barrel shifter with single cycle
Barrel shifter with multi cycle vhdl code
Barrel shifter with rotate left and write vhdl code
Parity generator with serial input and parallel ou...
►
March
(7)
0 comments:
Post a Comment