module shift(rotate_cnt,y,a);parameter shifterSIZE="8",cntSIZE=3;input[(cntSIZE-1):0] rotate_cnt;input[(shifterSIZE):0] a;output[(shifterSIZE):0] y;
wire[(shifterSIZE):0] tmp; assign {y,tmp}={a,a}<<rotate_cnt; endmodule
发布
文章评论(0条评论)
登录后参与讨论