/* $Author: karu $ */ /* $LastChangedDate: 2009-03-04 23:09:45 -0600 (Wed, 04 Mar 2009) $ */ /* $Rev: 45 $ */ // YOU SHALL NOT EDIT THIS FILE. ANY CHANGES TO THIS FILE WILL // RESULT IN ZERO FOR THIS PROBLEM. module seq_detect_hier (/*AUTOARG*/ // Outputs match, // Inputs in ); input in; output match; wire err; wire clk; wire rst; clkrst clk_generator(.clk(clk), .rst(rst), .err(err) ); seq_detect seq_detect0( /*AUTOINST*/ // Outputs .match (match), .err (err), // Inputs .in (in), .clk (clk), .rst (rst)); endmodule // DUMMY LINE FOR REV CONTROL :1: