blob: 754bbafabec1187ed5e2c4e9fb51f0c985d8e4ec [file] [log] [blame] [edit]
module top(
input wire clk,
input wire d,
output reg q
);
always @(posedge clk)
q <= d;
endmodule