Files
OpenSTA/test/verilog_specify.v
ambd161 36e516924f Recognize some basic specify blocks and ignore them (#309)
* Add parser support for specify blocks and specparam
Treated like regular parameters, and so ignored

* Add regression test

* Apply PR feedback

* missed the verilog_lang
2025-10-12 14:11:00 -07:00

21 lines
277 B
Verilog

module counter(clk, reset, in, out);
input clk;
output out;
input reset;
input in;
wire mid;
parameter PARAM1=1;
parameter PARAM2="test";
specify
specparam SPARAM1=2;
specparam SPARAM2="test2";
endspecify
defparam _1415_.PARAM2 = 1;
endmodule