mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 01:18:10 +02:00
- assertions, gen case, and inout - simplify block codegen - remove blank lines in tasks with no inputs
17 lines
299 B
Systemverilog
17 lines
299 B
Systemverilog
module Module;
|
|
parameter X = 1;
|
|
case (X)
|
|
1: initial $display("A");
|
|
2: initial $display("B");
|
|
default: initial $display("C");
|
|
3: ;
|
|
endcase
|
|
endmodule
|
|
|
|
module top;
|
|
Module #(1) a();
|
|
Module #(2) b();
|
|
Module #(3) c();
|
|
Module #(4) d();
|
|
endmodule
|