From dfca80c27385bbfaec5bf9971449ebe4150cc28c Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Sun, 17 May 2015 07:17:58 +0000 Subject: [PATCH] - smaller default depth git-svn-id: http://moon:8086/svn/vhdl/trunk@1104 cc03376c-175c-47c8-b038-4cd826a8556b --- lib/FIFO/src/fifo_async.vhd | 6 +++--- lib/FIFO/src/fifo_sync.vhd | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/FIFO/src/fifo_async.vhd b/lib/FIFO/src/fifo_async.vhd index d924b67..4b64a62 100644 --- a/lib/FIFO/src/fifo_async.vhd +++ b/lib/FIFO/src/fifo_async.vhd @@ -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 diff --git a/lib/FIFO/src/fifo_sync.vhd b/lib/FIFO/src/fifo_sync.vhd index 3a44c1e..8ae9a99 100644 --- a/lib/FIFO/src/fifo_sync.vhd +++ b/lib/FIFO/src/fifo_sync.vhd @@ -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