sv2v/test/core/package_pattern.v

8 lines
112 B
Verilog
Raw Permalink Normal View History

2020-07-22 02:05:27 +02:00
module top;
reg [1:0] w;
initial begin
w <= 2'b00;
$display("%b", w);
end
endmodule