blob: 962f832225e0cc3b6f5118b56e0d5959babf1eca [file] [log] [blame]
module top(a, b, c);
input [7:0] a;
input [7:0] b;
output [7:0] c;
assign c = a[$signed(b) +: 8];
endmodule