From 6da937fe581c9bc69fb211a8112ca45c8a57e91e Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Wed, 28 Oct 2009 10:43:27 +0000 Subject: [PATCH] - flash has access time of 25 ns Committed on the Free edition of March Hare Software CVSNT Server. Upgrade to CVS Suite for more features and support: http://march-hare.com/cvsnt/ git-svn-id: http://moon:8086/svn/vhdl/trunk@548 cc03376c-175c-47c8-b038-4cd826a8556b --- lib/CPUs/MIPS/src/tb_mips_top.vhd | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/CPUs/MIPS/src/tb_mips_top.vhd b/lib/CPUs/MIPS/src/tb_mips_top.vhd index 7663903..f8833b0 100644 --- a/lib/CPUs/MIPS/src/tb_mips_top.vhd +++ b/lib/CPUs/MIPS/src/tb_mips_top.vhd @@ -403,21 +403,21 @@ FLASH_READ: index := index + 1; end loop; else - flash_d <= (others => 'Z') after 10 ns; + flash_d <= (others => 'Z') after 25 ns; index := to_integer(flash_a(FLASH_ADDR_WIDTH-1 downto 2)); if flash_oe_n = '0' then if flash_cs_n = '0' then if flash_be_n(0) = '0' then - flash_d(7 downto 0) <= flash_data(index)(7 downto 0) after 10 ns; + flash_d(7 downto 0) <= flash_data(index)(7 downto 0) after 25 ns; end if; if flash_be_n(1) = '0' then - flash_d(15 downto 8) <= flash_data(index)(15 downto 8) after 10 ns; + flash_d(15 downto 8) <= flash_data(index)(15 downto 8) after 25 ns; end if; if flash_be_n(2) = '0' then - flash_d(23 downto 16) <= flash_data(index)(23 downto 16) after 10 ns; + flash_d(23 downto 16) <= flash_data(index)(23 downto 16) after 25 ns; end if; if flash_be_n(3) = '0' then - flash_d(31 downto 24) <= flash_data(index)(31 downto 24) after 10 ns; + flash_d(31 downto 24) <= flash_data(index)(31 downto 24) after 25 ns; end if; end if; end if;