1
0
mirror of synced 2026-02-21 15:07:30 +00:00
Files
YosysHQ.yosys/tests/asicworld/code_hdl_models_d_latch_gates.v
Clifford Wolf 7764d0ba1d initial import
2013-01-05 11:13:26 +01:00

16 lines
182 B
Verilog

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