Create 8 D flip-flops. All DFFs should be triggered by the positive edge of clk
module top_module (
input clk,
input [7:0] d,
output reg [7:0] q
);
always@ (posedge clk)
begin
q <= d;
end
endmodule
Create 8 D flip-flops. All DFFs should be triggered by the positive edge of clk
module top_module (
input clk,
input [7:0] d,
output reg [7:0] q
);
always@ (posedge clk)
begin
q <= d;
end
endmodule
354
4470
8508

被折叠的 条评论
为什么被折叠?