3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 01:24:10 +00:00

test: add attribute-before-stmt test from @nakengelhardt

This commit is contained in:
Eddie Hung 2020-05-14 16:32:14 -07:00
parent 1c117ac023
commit 95dcd7e785

View file

@ -41,3 +41,18 @@ module test ();
endmodule
EOT
select -assert-none a:*
design -reset
read_verilog <<EOT
module test ();
localparam y = 1;
reg x = 1'b0;
always @(*) begin
if (y)
(* foo *) x <= 1'b1;
else
(* bar *) x = 1'b0;
end
endmodule
EOT