Files
OpenSTA/test/get_is_buffer.v
T

12 lines
123 B
Verilog
Raw Normal View History

2025-11-16 18:34:37 -05:00
module dut (
input A,
output Y
);
sky130_fd_sc_hd__buf_2 buf_inst (
.A(A),
.X(Y)
);
endmodule