- smaller default depth

git-svn-id: http://moon:8086/svn/vhdl/trunk@1104 cc03376c-175c-47c8-b038-4cd826a8556b
This commit is contained in:
2015-05-17 07:17:58 +00:00
parent 92b39b9539
commit dfca80c273
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -31,10 +31,10 @@ use work.fifo_ctrl_pkg.all;
entity fifo_async is
Generic
(
addr_width : natural := 4;
addr_width : natural := 3;
data_width : natural := 8;
almost_full_thresh : integer := 12;
almost_empty_thresh : integer := 4;
almost_full_thresh : integer := 6;
almost_empty_thresh : integer := 2;
allow_full_writes : boolean := false;
allow_empty_reads : boolean := false;
do_last_read_update : boolean := true
+3 -3
View File
@@ -31,10 +31,10 @@ use work.fifo_ctrl_pkg.all;
entity fifo_sync is
Generic
(
addr_width : natural := 4;
addr_width : natural := 3;
data_width : natural := 8;
almost_full_thresh : integer := 12;
almost_empty_thresh : integer := 4;
almost_full_thresh : integer := 6;
almost_empty_thresh : integer := 2;
allow_full_writes : boolean := false;
allow_empty_reads : boolean := false;
do_last_read_update : boolean := true