22 lines
586 B
Verilog
22 lines
586 B
Verilog
/* Generated by Yosys 0.8+ */
|
|
|
|
(* hdlname = "\\counter" *)
|
|
(* top = 1 *)
|
|
(* src = "synthesis/tests/counter.v:16.1-32.10" *)
|
|
module counter(clk, reset, in, out);
|
|
(* src = "synthesis/tests/counter.v:17.14-17.17" *)
|
|
input clk;
|
|
(* src = "synthesis/tests/counter.v:19.18-19.21" *)
|
|
output out;
|
|
(* src = "synthesis/tests/counter.v:18.14-18.19" *)
|
|
input reset;
|
|
input in;
|
|
(* src = "synthesis/tests/counter.v:22.3-28.6", attr1 = "test_attr1", attr2 = "test_attr2" *)
|
|
sky130_fd_sc_hd__dfrtp_1 _1415_ (
|
|
.CLK(clk),
|
|
.D(in),
|
|
.Q(out),
|
|
.RESET_B(reset)
|
|
);
|
|
endmodule
|