mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 01:18:10 +02:00
- remove -o/--oneunit, has been the default behavior - revise test coverage for default vs. siloed behavior - add test to ensure README usage matches CLI help text - remove -V alias for --version - remove -? alias for --help
11 lines
242 B
Systemverilog
11 lines
242 B
Systemverilog
module top
|
|
import pkg::*;
|
|
#(localparam width = width_calc(2))
|
|
(input [width-1:0] i, output [width-1:0] o);
|
|
assign o = i + 1'b1;
|
|
initial begin
|
|
$display(width);
|
|
$display(`FANCY_SEEING_YOU);
|
|
end
|
|
endmodule
|