3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-05 10:50:25 +00:00

Revert "Revert PRs #2203 and #2244."

This reverts commit 9c120b89ac.
This commit is contained in:
Kamil Rakoczy 2020-07-10 09:59:48 +02:00
parent c0bcbe1f62
commit de649b9194
5 changed files with 68 additions and 10 deletions

View file

@ -0,0 +1,9 @@
read_verilog -sv <<EOT
module test_logic_param();
parameter logic a = 0;
parameter logic [31:0] e = 0;
parameter logic signed b = 0;
parameter logic unsigned c = 0;
parameter logic unsigned [31:0] d = 0;
endmodule
EOT