Files

6 lines
95 B
Verilog
Raw Permalink Normal View History

module top;
wire [2:0] test;
assign test = 3'd0;
initial $display(test);
endmodule