
Create a single D flip-flop.

module TopModule (
  input clk,
  input d,
  output reg q
);

