Line 1... |
Line 1... |
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
//// ////
|
//// ////
|
//// eth_rxethmac.v ////
|
//// eth_rxethmac.v ////
|
//// ////
|
//// ////
|
//// This file is part of the Ethernet IP core project ////
|
//// This file is part of the Ethernet IP core project ////
|
//// http://www.opencores.org/projects/ethmac/ ////
|
//// http://www.opencores.org/projects,ethmac/ ////
|
//// ////
|
//// ////
|
//// Author(s): ////
|
//// Author(s): ////
|
//// - Igor Mohor (igorM@opencores.org) ////
|
//// - Igor Mohor (igorM@opencores.org) ////
|
//// - Novan Hartadi (novan@vlsi.itb.ac.id) ////
|
//// - Novan Hartadi (novan@vlsi.itb.ac.id) ////
|
//// - Mahmud Galela (mgalela@vlsi.itb.ac.id) ////
|
//// - Mahmud Galela (mgalela@vlsi.itb.ac.id) ////
|
|
//// - Olof Kindgren (olof@opencores.org ////
|
//// ////
|
//// ////
|
//// All additional information is avaliable in the Readme.txt ////
|
//// All additional information is avaliable in the Readme.txt ////
|
//// file. ////
|
//// file. ////
|
//// ////
|
//// ////
|
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
//// ////
|
//// ////
|
//// Copyright (C) 2001 Authors ////
|
//// Copyright (C) 2011 Authors ////
|
//// ////
|
//// ////
|
//// This source file may be used and distributed without ////
|
//// This source file may be used and distributed without ////
|
//// restriction provided that this copyright statement is not ////
|
//// restriction provided that this copyright statement is not ////
|
//// removed from the file and that any derivative work contains ////
|
//// removed from the file and that any derivative work contains ////
|
//// the original copyright notice and the associated disclaimer. ////
|
//// the original copyright notice and the associated disclaimer. ////
|
Line 38... |
Line 39... |
//// Public License along with this source; if not, download it ////
|
//// Public License along with this source; if not, download it ////
|
//// from http://www.opencores.org/lgpl.shtml ////
|
//// from http://www.opencores.org/lgpl.shtml ////
|
//// ////
|
//// ////
|
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
//
|
//
|
|
// 2011-07-06 Olof Kindgren <olof@opencores.org>
|
|
// Add ByteCntEq0 to rxaddrcheck
|
|
//
|
// CVS Revision History
|
// CVS Revision History
|
//
|
//
|
|
//
|
// $Log: not supported by cvs2svn $
|
// $Log: not supported by cvs2svn $
|
// Revision 1.12 2004/04/26 15:26:23 igorm
|
// Revision 1.12 2004/04/26 15:26:23 igorm
|
// - Bug connected to the TX_BD_NUM_Wr signal fixed (bug came in with the
|
// - Bug connected to the TX_BD_NUM_Wr signal fixed (bug came in with the
|
// previous update of the core.
|
// previous update of the core.
|
// - TxBDAddress is set to 0 after the TX is enabled in the MODER register.
|
// - TxBDAddress is set to 0 after the TX is enabled in the MODER register.
|
Line 219... |
Line 224... |
eth_rxaddrcheck rxaddrcheck1
|
eth_rxaddrcheck rxaddrcheck1
|
(.MRxClk(MRxClk), .Reset( Reset), .RxData(RxData),
|
(.MRxClk(MRxClk), .Reset( Reset), .RxData(RxData),
|
.Broadcast (Broadcast), .r_Bro (r_Bro), .r_Pro(r_Pro),
|
.Broadcast (Broadcast), .r_Bro (r_Bro), .r_Pro(r_Pro),
|
.ByteCntEq6(ByteCntEq6), .ByteCntEq7(ByteCntEq7), .ByteCntEq2(ByteCntEq2),
|
.ByteCntEq6(ByteCntEq6), .ByteCntEq7(ByteCntEq7), .ByteCntEq2(ByteCntEq2),
|
.ByteCntEq3(ByteCntEq3), .ByteCntEq4(ByteCntEq4), .ByteCntEq5(ByteCntEq5),
|
.ByteCntEq3(ByteCntEq3), .ByteCntEq4(ByteCntEq4), .ByteCntEq5(ByteCntEq5),
|
.HASH0(r_HASH0), .HASH1(r_HASH1),
|
.HASH0(r_HASH0), .HASH1(r_HASH1), .ByteCntEq0(ByteCntEq0),
|
.CrcHash(CrcHash), .CrcHashGood(CrcHashGood), .StateData(StateData),
|
.CrcHash(CrcHash), .CrcHashGood(CrcHashGood), .StateData(StateData),
|
.Multicast(Multicast), .MAC(MAC), .RxAbort(RxAbort),
|
.Multicast(Multicast), .MAC(MAC), .RxAbort(RxAbort),
|
.RxEndFrm(RxEndFrm), .AddressMiss(AddressMiss), .PassAll(PassAll),
|
.RxEndFrm(RxEndFrm), .AddressMiss(AddressMiss), .PassAll(PassAll),
|
.ControlFrmAddressOK(ControlFrmAddressOK)
|
.ControlFrmAddressOK(ControlFrmAddressOK)
|
);
|
);
|