原创 8位桶形移位寄存器

2011-7-30 20:16 5116 9 9 分类: 工程师职场

d88cbdc8-22bc-4a41-8fdf-f4d1f773b562.jpg


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条评论)

登录后参与讨论
我要评论
0
9
关闭 站长推荐上一条 /2 下一条