mirror of
https://github.com/zachjs/sv2v.git
synced 2026-09-07 03:43:04 +02:00
added support for inside expressions (closes #28)
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
module top;
|
||||
initial begin : foo
|
||||
reg [1:0] a;
|
||||
for (a = 0; a < 3; a++) begin
|
||||
if (a == 2'b01 || a == 2'b00)
|
||||
$display("fizz");
|
||||
if (a == 2'b10)
|
||||
$display("buzz");
|
||||
end
|
||||
end
|
||||
endmodule
|
||||
Reference in New Issue
Block a user