|
Message
From: cvs at opencores.org<cvs@o...>
Date: Wed Jan 24 23:20:41 CET 2007
Subject: [cvs-checkins] MODIFIED: rise ...
Date: 00/07/01 24:23:20 Modified: rise/vhdl fifo.vhd Log: Changed high active resets to low active ones. Revision Changes Path 1.2 rise/vhdl/fifo.vhd http://www.opencores.org/cvsweb.shtml/rise/vhdl/fifo.vhd.diff?r1=1.1&r2=1.2 (In the diff below, changes in quantity of whitespace are not shown.) Index: fifo.vhd =================================================================== RCS file: /cvsroot/jlechner/rise/vhdl/fifo.vhd,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- fifo.vhd 21 Jan 2007 23:09:40 -0000 1.1 +++ fifo.vhd 24 Jan 2007 22:20:40 -0000 1.2 @@ -54,7 +54,7 @@ full <= f; - if (reset='1') then + if (reset='0') then buf <= (others => '0'); f <= '0';
|