From c0291407fee5bf794f72c20b17a1e38b96e63192 Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Thu, 25 Mar 2010 21:10:36 +0000 Subject: [PATCH] - removed data_vld from tx_ctrl_in and rx_ctrl_out Committed on the Free edition of March Hare Software CVSNT Server. Upgrade to CVS Suite for more features and support: http://march-hare.com/cvsnt/ git-svn-id: http://moon:8086/svn/vhdl/trunk@823 cc03376c-175c-47c8-b038-4cd826a8556b --- lib/emac/src/emac_types.vhd | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/emac/src/emac_types.vhd b/lib/emac/src/emac_types.vhd index 3010f08..df5117a 100644 --- a/lib/emac/src/emac_types.vhd +++ b/lib/emac/src/emac_types.vhd @@ -18,7 +18,6 @@ package emac_types is tx_er : std_logic; tx_size : unsigned(15 downto 0); tx_req_en : std_logic; - data_vld : std_logic; end record; type tx_ctrl_out_t is record @@ -34,7 +33,6 @@ package emac_types is type rx_ctrl_out_t is record rx_er : std_logic; rx_vld : std_logic; - data_vld : std_logic; rx_size : unsigned(15 downto 0); end record;