
Create 8 D flip-flops. All DFFs should be triggered by the positive edge
of clk.

module TopModule (
  input clk,
  input [7:0] d,
  output reg [7:0] q
);

