mirror of
https://github.com/The-OpenROAD-Project/OpenSTA.git
synced 2026-05-30 00:24:12 +08:00
* 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
21 lines
277 B
Verilog
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
|