2024-03-10 02:57:07 +01:00
|
|
|
/* 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;
|
Add {`instance`, `cell`, `verilog_src`, `pin`, `net`, `hier_pins`, `capacitance`} fields to `report_checks -format json` for paths (#135)
* Add {`inst`, `cell`, `src`, `nets`} to `report_checks -format json`
* Smallfix
* Improved nets
* Race condition fix
* Fixes
* Small whitespace fix
* Add no paths corner case stuff
* Adjustments to naming of fields
* Requested fixes
* Reintroduce escapeBackslashes, use stringCopy to prevent stack memory warning
* Fix escapeBackslashes to use preferred style
* No backslash escaping
* Make requested fixes
2025-01-14 04:28:04 +01:00
|
|
|
wire mid;
|
2024-10-08 22:40:07 +02:00
|
|
|
(* bottom_bound = 1'sh0 *)
|
2024-03-28 03:33:58 +01:00
|
|
|
(* src = "synthesis/tests/counter.v:22.3-28.6", attr1 = "test_attr1", attr2 = "test_attr2" *)
|
2024-03-10 02:57:07 +01:00
|
|
|
sky130_fd_sc_hd__dfrtp_1 _1415_ (
|
|
|
|
|
.CLK(clk),
|
|
|
|
|
.D(in),
|
Add {`instance`, `cell`, `verilog_src`, `pin`, `net`, `hier_pins`, `capacitance`} fields to `report_checks -format json` for paths (#135)
* Add {`inst`, `cell`, `src`, `nets`} to `report_checks -format json`
* Smallfix
* Improved nets
* Race condition fix
* Fixes
* Small whitespace fix
* Add no paths corner case stuff
* Adjustments to naming of fields
* Requested fixes
* Reintroduce escapeBackslashes, use stringCopy to prevent stack memory warning
* Fix escapeBackslashes to use preferred style
* No backslash escaping
* Make requested fixes
2025-01-14 04:28:04 +01:00
|
|
|
.Q(mid),
|
|
|
|
|
.RESET_B(reset)
|
|
|
|
|
);
|
|
|
|
|
(* src = "synthesis/tests/counter.v:22.3-28.6" *)
|
|
|
|
|
sky130_fd_sc_hd__dfrtp_1 \_1416_[0] (
|
|
|
|
|
.CLK(clk),
|
|
|
|
|
.D(mid),
|
2024-03-10 02:57:07 +01:00
|
|
|
.Q(out),
|
|
|
|
|
.RESET_B(reset)
|
|
|
|
|
);
|
|
|
|
|
endmodule
|