2021-06-15
作者:互联网
一、实验目的
Quartus || 原理仿真 课本P195代码实验图
二、实验内容
按照实验代码进行仿真操作
三、实验代码
module shiftrne(R,L,E,w,Clock,Q);
parameter n=8;
input [n-1:0]R;
input L,E,w,Clock;
output reg [n-1:0]Q;
integer k;
always @(posedge Clock)
if(L)
Q<=R;
else if (E)
begin
for(k=n-1;k>0;k=k-1)
Q[n-1]<=w;
end
endmodule
四、实验工具
电脑、Quartus||、Modelism
五、实验截图
六、实验视频链接
https://v.qq.com/x/page/r3248ygsyxd.html
标签:仿真,06,Clock,Quartus,实验,2021,input,15,代码 来源: https://blog.csdn.net/qq_56066799/article/details/118498976