From a799fffaa7aa9c9a8f1ae379d33277df72ee57d2 Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Fri, 19 Mar 2010 10:22:16 +0000 Subject: [PATCH] - renamed dout_en to dout_vld 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@803 cc03376c-175c-47c8-b038-4cd826a8556b --- lib/emac/src/sipo.vhd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/emac/src/sipo.vhd b/lib/emac/src/sipo.vhd index 4cd0f8d..293f68b 100644 --- a/lib/emac/src/sipo.vhd +++ b/lib/emac/src/sipo.vhd @@ -19,7 +19,7 @@ ENTITY sipo IS enable : in STD_LOGIC; din_en : in STD_LOGIC; din : in unsigned(data_width_in-1 downto 0); - dout_en : out STD_LOGIC; + dout_vld : out STD_LOGIC; dout_be : out unsigned(data_width_out/data_width_in-1 downto 0); dout : out unsigned(data_width_out-1 downto 0) @@ -44,7 +44,7 @@ begin process(clk) begin if rising_edge(clk) then - dout_en <= pre_fin; + dout_vld <= pre_fin; if rst = '1' then dout_be <= (others => '0'); elsif pre_fin = '1' then