mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-08-22 14:17:27 +02:00
Add logic param and integer bad syntax tests
Signed-off-by: Kamil Rakoczy <[email protected]>
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user