From f1db5927e297fdac0ce6f012f4181ce7b1838730 Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Sat, 23 May 2015 08:05:31 +0000 Subject: [PATCH] - reverted: SRDY dependent on SDRAM_RST0 git-svn-id: http://moon:8086/svn/vhdl/trunk@1162 cc03376c-175c-47c8-b038-4cd826a8556b --- lib/SDRAM/ddr_sdr_v1_5/src/sdram_ctrl_frontend64_wb.vhd | 2 +- lib/SDRAM/ddr_sdr_v1_5/src/sdram_ctrl_frontend_wb.vhd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/SDRAM/ddr_sdr_v1_5/src/sdram_ctrl_frontend64_wb.vhd b/lib/SDRAM/ddr_sdr_v1_5/src/sdram_ctrl_frontend64_wb.vhd index 3abb486..286dd70 100644 --- a/lib/SDRAM/ddr_sdr_v1_5/src/sdram_ctrl_frontend64_wb.vhd +++ b/lib/SDRAM/ddr_sdr_v1_5/src/sdram_ctrl_frontend64_wb.vhd @@ -252,7 +252,7 @@ begin ); ------------------------------------------------------------------------------------------ - SRDY_O <= rdy and not SDRAM_RST0; + SRDY_O <= rdy; ACK_O <= not (read_fifo_empty); DAT_O <= read_fifo_data_out; rdy <= not (cat_fifo_full or write_fifo_full or read_fifo_full) and CYC_I; 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 17c747d..51bc89a 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,7 +252,7 @@ begin ); ------------------------------------------------------------------------------------------ - SRDY_O <= rdy and not SDRAM_RST0; + SRDY_O <= rdy; ACK_O <= not (read_fifo_empty); DAT_O <= read_fifo_data_out; rdy <= not (cat_fifo_full or write_fifo_full or read_fifo_full) and CYC_I;