top_2.v 206 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
module top
    ( input d, clk, output reg q );
	always @( posedge clk )
            q <= d;
endmodule

module top2
    ( input d, clk, output reg q );
	always @( posedge clk )
            q <= d;
endmodule