type dmemSpace is array(0 to 1023) of std_logic_vector(31 downto 0);
signal dataMem : dmemSpace := ( 
  400 => X"00000000",
  404 => X"00001000",
  408 => X"FFFFEFFF",
  others => X"00000000"
);

signal dAddr : std_logic_vector(31 downto 0);
signal check : integer; 


dAddr(31 downto 0) <= Addr(31 downto 2) & "00";  
check <= to_integer(unsigned(dAddr));
DataOut <= dataMem(to_integer(unsigned(dAddr))) when (check > 0); 

Its me again.... In working on a single cycle cpu and everything else works fine but this particular line in the memory.

DataOut <= dataMem(to_integer(unsigned(dAddr))) when (check > 0); 

I want to prevent an index out of bounds error for DataOut but this doesn't work. Any ideas?

  • Check > 0 prevents all data from coming out.
  • Check >= 0 lets the error through... when the index that causes the exception is -4.
link|improve this question

75% accept rate
Is this within a clocked process? If it is, it is a scheduling issue. If it is not, you have created a latch with DataOut. Why aren't you just using 9 downto 0 of dAddr to limit to 1023? (I know, could be a learning exercise.) – Aaron D. Marasco Nov 3 '11 at 0:16
! YOURE RIGHT I added it to the clock process and everything is fine now. Thanks for everything. Actually this has been bothering me for says now.... I'm such a scrub <.< – user1026641 Nov 3 '11 at 0:38
Then why did you "accept" the answer below that made no sense? I added an answer that included some of this and a few other warnings. – Aaron D. Marasco Nov 3 '11 at 0:42
feedback

2 Answers

up vote 1 down vote accepted

If you have it in a process, you need "dAddr" and "check" to be variables, or else you are taking two clock cycles based on whether or not the previous address was valid, not the one you are using.

link|improve this answer
feedback

If your memory has 1024 locations, your address should be 10 bits, not the 32 bits you have now. If your address is unsigned(9 downto 0), all of its values are legal input for your memory array.

Note you put data at address 400, 404, 408. You are leaving three blank spaces in between each data element! Even though your data is 4 bytes wide, every address takes up an entire 4 byte data word.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.