top.v 102 Bytes
Newer Older
1 2 3 4 5
module top
    ( input d, clk, output reg q );
	always @( posedge clk )
            q <= d;
endmodule