Line 41... |
Line 41... |
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
//
|
//
|
// CVS Revision History
|
// CVS Revision History
|
//
|
//
|
// $Log: not supported by cvs2svn $
|
// $Log: not supported by cvs2svn $
|
|
// Revision 1.2 2001/09/11 14:17:00 mohor
|
|
// Few little NCSIM warnings fixed.
|
|
//
|
// Revision 1.1 2001/08/06 14:44:29 mohor
|
// Revision 1.1 2001/08/06 14:44:29 mohor
|
// A define FPGA added to select between Artisan RAM (for ASIC) and Block Ram (For Virtex).
|
// A define FPGA added to select between Artisan RAM (for ASIC) and Block Ram (For Virtex).
|
// Include files fixed to contain no path.
|
// Include files fixed to contain no path.
|
// File names and module names changed ta have a eth_ prologue in the name.
|
// File names and module names changed ta have a eth_ prologue in the name.
|
// File eth_timescale.v is used to define timescale
|
// File eth_timescale.v is used to define timescale
|
Line 113... |
Line 116... |
// Defining the next state
|
// Defining the next state
|
assign StartIdle = ~MRxDV & (StateDrop | StatePreamble | StateSFD | (|StateData) & (ByteCntEq0 | ByteCntGreat2));
|
assign StartIdle = ~MRxDV & (StateDrop | StatePreamble | StateSFD | (|StateData) & (ByteCntEq0 | ByteCntGreat2));
|
|
|
assign StartPreamble = MRxDV & ~MRxDEq5 & (StateIdle & ~Transmitting);
|
assign StartPreamble = MRxDV & ~MRxDEq5 & (StateIdle & ~Transmitting);
|
|
|
assign StartSFD = MRxDV & MRxDEq5 & (StateIdle & ~Transmitting);
|
//assign StartSFD = MRxDV & MRxDEq5 & (StateIdle & ~Transmitting);
|
|
assign StartSFD = MRxDV & MRxDEq5 & (StateIdle & ~Transmitting | StatePreamble);
|
|
|
assign StartData0 = MRxDV & (StateSFD & MRxDEqD & IFGCounterEq24 | StateData1);
|
assign StartData0 = MRxDV & (StateSFD & MRxDEqD & IFGCounterEq24 | StateData1);
|
|
|
assign StartData1 = MRxDV & StateData0;
|
assign StartData1 = MRxDV & StateData0;
|
|
|