const.v 146 Bytes
Newer Older
1 2 3 4 5
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