河南成教 / FPGA 原理与应用
[论述题]
下面程序描述了 8 位移位寄存器,试补充完整。
空( 1) shifter(空( 2),clr,dout);
input din,clk,clr;
output空( 3)dout;
reg[7:0] dout;
always @(posedge clk)
begin
if ( 空( 4)) dout<= 8'b0;
else
begin
dout <= dout << 1;
dout[0] <= din;
end
空( 5)
endmodule
[论述题]
下面程序描述了 8 位移位寄存器,试补充完整。
空( 1) shifter(空( 2),clr,dout);
input din,clk,clr;
output空( 3)dout;
reg[7:0] dout;
always @(posedge clk)
begin
if ( 空( 4)) dout<= 8'b0;
else
begin
dout <= dout << 1;
dout[0] <= din;
end
空( 5)
endmodule
参考答案:
佳题速递: