mirror of
https://github.com/The-OpenROAD-Project/OpenSTA.git
synced 2026-05-30 00:24:12 +08:00
* Update STA to exclude bias pins from timing graph and subsequently in write_verilog Signed-off-by: dsengupta0628 <dsengupta@precisioninno.com> * unnecessary space in orig verilog Signed-off-by: dsengupta0628 <dsengupta@precisioninno.com> * Update to use well supplies rather than bias pins Signed-off-by: dsengupta0628 <dsengupta@precisioninno.com> --------- Signed-off-by: dsengupta0628 <dsengupta@precisioninno.com>
18 lines
247 B
Verilog
18 lines
247 B
Verilog
module top (
|
|
output y,
|
|
input a
|
|
);
|
|
supply1 VPWR;
|
|
supply0 VGND;
|
|
supply1 VPB;
|
|
supply0 VNB;
|
|
sky130_fd_sc_hd__buf_1 u1 (
|
|
.X(y),
|
|
.A(a),
|
|
.VPWR(VPWR),
|
|
.VGND(VGND),
|
|
.VPB(VPB),
|
|
.VNB(VNB)
|
|
);
|
|
endmodule
|