`timescale 1ns / 1ns module top_module ( input wire [15:0] in, output wire [15:0] out ); assign out = {in[0+:4], in[4+:4], in[8+:4], in[12+:4]}; endmodule