From a3e83160eb27e123736cf46c9dea0effd8c83978 Mon Sep 17 00:00:00 2001 From: hadeshyp Date: Sun, 18 Apr 2010 21:40:07 +0000 Subject: [PATCH] *** empty log message *** --- xilinx/virtex4/fifo/fifo_var_oreg.vhd | 47 +++++++++++++-------------- 1 file changed, 22 insertions(+), 25 deletions(-) diff --git a/xilinx/virtex4/fifo/fifo_var_oreg.vhd b/xilinx/virtex4/fifo/fifo_var_oreg.vhd index 92399ea..205615b 100644 --- a/xilinx/virtex4/fifo/fifo_var_oreg.vhd +++ b/xilinx/virtex4/fifo/fifo_var_oreg.vhd @@ -105,17 +105,17 @@ begin gen_36_32k : if FIFO_WIDTH = 36 and FIFO_DEPTH = 15 generate THE_FIFO : fifo_36x32k_oreg port map( - Data => Data, - Clock => Clock, - WrEn => WrEn, - RdEn => RdEn, - Reset => Reset, - AmFullThresh => AmFullThresh, - Q => Q, - WCNT => WCNT(14 downto 0), - Empty => Empty, - Full => Full, - AlmostFull => AlmostFull + din => Data, + clk => Clock, + wr_en => WrEn, + rd_en => RdEn, + rst => Reset, + prog_full_thresh => AmFullThresh, + dout => Q, + data_count => WCNT(14 downto 0), + empty => Empty, + full => Full, + prog_full => AlmostFull ); end generate; @@ -123,23 +123,20 @@ begin gen_18_512 : if FIFO_WIDTH = 18 and FIFO_DEPTH = 9 generate THE_FIFO : fifo_18x512_oreg port map( - Data => Data, - Clock => Clock, - WrEn => WrEn, - RdEn => RdEn, - Reset => Reset, - AmFullThresh => AmFullThresh, - Q => Q, - WCNT => WCNT(8 downto 0), - Empty => Empty, - Full => Full, - AlmostFull => AlmostFull + din => Data, + clk => Clock, + wr_en => WrEn, + rd_en => RdEn, + rst => Reset, + prog_full_thresh => AmFullThresh, + dout => Q, + data_count => WCNT(8 downto 0), + empty => Empty, + full => Full, + prog_full => AlmostFull ); end generate; - - - end architecture; \ No newline at end of file -- 2.43.0