串并转换verilog verilog如下 //串并转换 //串转并 module serial2parallel( input clk, input rst_n, input datain, input shift_en, input load, output reg [15:0] dataout); reg [15:0] shiftr; //串转并 always@(posedge clk) if(!rst_n) shiftr<=0; else if(shift_en) shiftr<=