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;