From 5f24a7e1dc0222c506b63206413aba438a180d2d Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Sat, 14 Mar 2009 16:38:07 +0000 Subject: [PATCH] - FLASH alias at 0x00000000 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@380 cc03376c-175c-47c8-b038-4cd826a8556b --- projects/mips_sys/src/mips_sys.vhd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/mips_sys/src/mips_sys.vhd b/projects/mips_sys/src/mips_sys.vhd index 76893e1..4e9c360 100644 --- a/projects/mips_sys/src/mips_sys.vhd +++ b/projects/mips_sys/src/mips_sys.vhd @@ -488,9 +488,9 @@ mem_mux: process(ADDR_O) begin mem_area <= mem_dead; --- if ADDR_O(31 downto 28) = X"0" then --- mem_area <= mem_flash; - if ADDR_O(31 downto 28) = X"A" then + if ADDR_O(31 downto 28) = X"0" then + mem_area <= mem_flash; + elsif ADDR_O(31 downto 28) = X"A" then if ADDR_O(27 downto 26) = "00" then if ADDR_O(18 downto 16) = "000" then mem_area <= mem_gpio;