
Create 8 D flip-flops with active high synchronous reset. The flip-flops
must be reset to 0x34 rather than zero. All DFFs should be triggered by
the negative edge of clk.

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

