This quiz required me to create 8 D flip-flops with synchronous clock. Here is my code for this quiz.
module top_module (
input clk,
input [7:0] d,
output [7:0] q
);
always@(posedge clk)begin
q <= d;
end
endmodule
Reference:https://hdlbits.01xz.net/wiki/Dff8