mirror of https://github.com/zachjs/sv2v.git
6 lines
146 B
Verilog
6 lines
146 B
Verilog
|
|
module top;
|
||
|
|
integer w = 11;
|
||
|
|
wire [63:0] x = { 32'd11, 32'd12 };
|
||
|
|
initial $display("%b %b %b %b", w, x, x[32+:32], x[0+:32]);
|
||
|
|
endmodule
|