module reg_seq_example( clk, reset, d, q); input clk, reset, d; output q; reg q; wire clk, reset, d; always @ (posedge clk or posedge reset) if (reset) begin q <= 1'b0; end else begin q <= d; end endmodule aig/aigScl.c?h=yosys-experimental' type='application/atom+xml'/>
![]() |
index : iCE40/abc | |
clone of https://github.com/YosysHQ/abc |
summaryrefslogtreecommitdiffstats |