Files

6 lines
145 B
Verilog
Raw Permalink Normal View History

2021-02-23 16:45:53 -05:00
module top;
integer w = 11;
reg [63:0] x = { 32'd11, 32'd12 };
2021-02-23 16:45:53 -05:00
initial $display("%b %b %b %b", w, x, x[32+:32], x[0+:32]);
endmodule