//--------------------------------------------------------------------------------------------------
//
// Title       : top
// Design      : EncControl
// Author      : SJensen
// Company     : MBARI
//
//-------------------------------------------------------------------------------------------------
//
// File        : C:\Projects\genosensor\2g\CPLDs\Encodertest\EncControl\compile\top.v
// Generated   : Fri Apr 30 14:01:56 2004
// From        : C:\Projects\genosensor\2g\CPLDs\Encodertest\EncControl\src\top.bde
// By          : Bde2Verilog ver. 2.01
//
//-------------------------------------------------------------------------------------------------
//
// Description : 
//
//-------------------------------------------------------------------------------------------------

// synopsys translate_off
`ifdef _VCP
`else
`define library(a,b)
`endif
// synopsys translate_on


// ---------- Design Unit Header ---------- //
`timescale 1ps / 1ps

module top (Mclk,Reset,Start,CE,DAV,Eclk,Shift) ;

// ------------ Port declarations --------- //
input Mclk;
wire Mclk;
input Reset;
wire Reset;
input Start;
wire Start;
output CE;
wire CE;
output DAV;
wire DAV;
output Eclk;
wire Eclk;
output Shift;
wire Shift;

// -------- Component instantiations -------//

ClkDivider U1
(
	.CE(CE),
	.DAV(DAV),
	.Eclk(Eclk),
	.Mclk(Mclk),
	.Reset(Reset),
	.Shift(Shift),
	.Start(Start)
);



endmodule 
