diff options
author | Josh Blum <josh@joshknows.com> | 2010-12-08 14:24:04 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-12-08 14:24:04 -0800 |
commit | 7aad7adc5a819ae29389cf61d552cf2157986880 (patch) | |
tree | d07d9ce8c36c419fc7fa23b27b3a6db101c17291 /usrp2/opencores/zpu/core | |
parent | f2a453f7a04bf397e317ce9aa885a00d629fad7f (diff) | |
download | uhd-7aad7adc5a819ae29389cf61d552cf2157986880.tar.gz uhd-7aad7adc5a819ae29389cf61d552cf2157986880.tar.bz2 uhd-7aad7adc5a819ae29389cf61d552cf2157986880.zip |
zpu: set all the address widths to 16, grumble
Diffstat (limited to 'usrp2/opencores/zpu/core')
-rw-r--r-- | usrp2/opencores/zpu/core/zpu_config.vhd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usrp2/opencores/zpu/core/zpu_config.vhd b/usrp2/opencores/zpu/core/zpu_config.vhd index 796c5b75d..f7743d602 100644 --- a/usrp2/opencores/zpu/core/zpu_config.vhd +++ b/usrp2/opencores/zpu/core/zpu_config.vhd @@ -11,10 +11,10 @@ package zpu_config is -- Clock frequency in MHz.
constant ZPU_Frequency : std_logic_vector(7 downto 0) := x"40";
-- This is the msb address bit. bytes=2^(maxAddrBitIncIO+1)
- constant maxAddrBitIncIO : integer := 27;
+ constant maxAddrBitIncIO : integer := 15;
-- start byte address of stack.
-- point to top of RAM - 2*words
- constant spStart : std_logic_vector(maxAddrBitIncIO downto 0) := x"0003ff8";
+ constant spStart : std_logic_vector(maxAddrBitIncIO downto 0) := x"3ff8";
end zpu_config;
|