sv2v/test/core/struct_unit_array.v

5 lines
82 B
Verilog
Raw Normal View History

module top;
reg [2:0] s = 3'b110;
initial #1 $display("%b", s);
endmodule