- 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
This commit is contained in:
2010-03-19 10:22:16 +00:00
parent 1e2700f265
commit a799fffaa7
+2 -2
View File
@@ -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