yosys/tests/asicworld/code_hdl_models_d_latch_gat...

16 lines
182 B
Verilog
Raw Normal View History

2013-01-05 04:13:26 -06:00
module d_latch_gates(d,clk,q,q_bar);
input d,clk;
output q, q_bar;
wire n1,n2,n3;
not (n1,d);
nand (n2,d,clk);
nand (n3,n1,clk);
nand (q,q_bar,n2);
nand (q_bar,q,n3);
endmodule