From beca7f7ec84deb799109148ff5b72f0e15bb2a20 Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Thu, 9 Oct 2008 12:26:32 +0000 Subject: [PATCH] Cleaned up git-svn-id: http://moon:8086/svn/vhdl/trunk@35 cc03376c-175c-47c8-b038-4cd826a8556b --- lib/SDRAM/ddr_sdr_v1_5/src/sdram_ctrl_frontend_wb.vhd | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/SDRAM/ddr_sdr_v1_5/src/sdram_ctrl_frontend_wb.vhd b/lib/SDRAM/ddr_sdr_v1_5/src/sdram_ctrl_frontend_wb.vhd index 7f23f19..30a1007 100644 --- a/lib/SDRAM/ddr_sdr_v1_5/src/sdram_ctrl_frontend_wb.vhd +++ b/lib/SDRAM/ddr_sdr_v1_5/src/sdram_ctrl_frontend_wb.vhd @@ -252,12 +252,12 @@ begin ); ------------------------------------------------------------------------------------------ - SRDY_O <= rdy and CYC_I; - rdy <= not (cat_fifo_full or write_fifo_full or read_fifo_full); - write_fifo_we <= STB_I and CYC_I and WE_I and rdy; + SRDY_O <= rdy; + rdy <= not (cat_fifo_full or write_fifo_full or read_fifo_full) and CYC_I; + write_fifo_we <= STB_I and WE_I and rdy; write_fifo_data_in <= DAT_I; write_fifo_dm_in <= not SEL_I; - cat_fifo_we <= STB_I and CYC_I and rdy; + cat_fifo_we <= STB_I and rdy; cmd_fifo_in <= UCMD_WRITE when WE_I = '1' else UCMD_READ; addr_fifo_in <= ADDR_I(24 downto 2) & "0"; dm_rd_fifo_in <= not SEL_I;