const.v 145 Bytes
Newer Older
1 2
module top;
    integer w = 11;
3
    reg [63:0] x = { 32'd11, 32'd12 };
4 5
    initial $display("%b %b %b %b", w, x, x[32+:32], x[0+:32]);
endmodule