mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-29 17:17:44 +02:00
- assertions, gen case, and inout - simplify block codegen - remove blank lines in tasks with no inputs
10 lines
130 B
Systemverilog
10 lines
130 B
Systemverilog
module top;
|
|
task t;
|
|
input x;
|
|
begin : y
|
|
reg z;
|
|
end
|
|
endtask
|
|
initial t(0);
|
|
endmodule
|