mirror of
https://github.com/The-OpenROAD-Project/OpenSTA.git
synced 2026-09-08 12:34:06 +02:00
8 lines
233 B
Verilog
8 lines
233 B
Verilog
// Verilog with constant connections
|
|
// This triggers VerilogNetConstant
|
|
module const_mod (input in1, output out1);
|
|
wire w1;
|
|
AND2x2_ASAP7_75t_R u1 (.A(in1), .B(1'b1), .Y(w1));
|
|
BUFx2_ASAP7_75t_R u2 (.A(w1), .Y(out1));
|
|
endmodule
|