mirror of https://github.com/zachjs/sv2v.git
8 lines
105 B
Verilog
8 lines
105 B
Verilog
|
|
module top;
|
||
|
|
reg w;
|
||
|
|
initial begin
|
||
|
|
w <= 1'b1;
|
||
|
|
$display("%b", w);
|
||
|
|
end
|
||
|
|
endmodule
|