mirror of
https://github.com/The-OpenROAD-Project/OpenSTA.git
synced 2026-05-30 00:24:12 +08:00
* Add support for "well" direction type (nwell, pwell, etc.), and fix isBuffer (+ other functions) to accommodate wells * Just fix isBuffer issue
12 lines
123 B
Verilog
12 lines
123 B
Verilog
module dut (
|
|
input A,
|
|
output Y
|
|
);
|
|
|
|
sky130_fd_sc_hd__buf_2 buf_inst (
|
|
.A(A),
|
|
.X(Y)
|
|
);
|
|
|
|
endmodule
|