1
0
mirror of synced 2026-01-18 01:12:10 +00:00
YosysHQ.yosys/tests/sim/dlatchsr.v
2022-02-16 13:58:51 +01:00

12 lines
166 B
Verilog

module dlatchsr( input d, set, clr, en, output reg q );
always @* begin
if ( clr )
q = 0;
else if (set)
q = 1;
else
if (en)
q = d;
end
endmodule