一、移位寄存器定义
移位寄存器定义
A shift register is a type of digital circuit using a cascade of flip flops where the output of one flip-flop is connected to the input of the next.
移位寄存器是一种将一组D触发器进行级联输出而形成的一种时序逻辑电路。
在设计中经常会用到的一种基础时序电路,比如下面串转并电路,通过将串行输入的码流移位将其转换成并行数据输出。
本文设计一个简单的串并转换器,实现将串行输入数据转换成8位的并行数据进行输出,同时输出一个转换完成标志。
二、verilog源码
// implement a simple 8bit serial to paralle convertor
module s2p_demo (clk, rstn, din, dout, done);
input clk;
input rstn;
input din;
output [7:0] dout;
output done;
reg [2:0] cnt;
reg done;
reg done_dly;
reg [7:0] dout;
reg [7:0] dout_dly;
always@(posedge clk or negedge rstn)
begin
if(!rstn) begin
dout_dly <= 8'bx; end
else begin
dout_dly[cnt] <= din; end
end
always@(posedge clk or negedge rstn)
begin
if(!rstn) begin
dout <= 8'b0; end
else if(done_dly) begin
dout <= dout_dly;
done <= done_dly; end
else begin
dout <= 8'b0;
done <= done_dly; end
end
always@(posedge clk or negedge rstn)
begin
if(!rstn) begin
cnt <= 3'b0;
done_dly <= 1'b0; end
else if(cnt == 3'b111) begin
cnt <= 3'b0;
done_dly <= 1'b1; end
else begin
cnt <= cnt + 1'b1;
done_dly <= 1'b0;
end
end
endmodule
三、仿真结果
转载请注明出处!
原文地址:https://blog.csdn.net/zuoph/article/details/134618233
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_19615.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。