memory

Guest
can anyone write a simple code of memory test-bench also
i would like to get some suggestions about writing a code for a bit
oriented memory that has an access for each single bit in the array

many thanks
 
On Jul 2, 11:30 am, ziad1...@hotmail.co.uk wrote:
can anyone write a  simple code of memory test-bench
Yes.

also
i would like to get some suggestions about writing a code for a bit
oriented memory that has an access for each single bit in the array
Sounds like an array of flip flops...

KJ
 
On 2 Jul., 17:30, ziad1...@hotmail.co.uk wrote:
can anyone write a simple code of memory test-bench also
Yes. Maybe you like to know if I could do this for you? Of course,
send me your specification and some $$.

i would like to get some suggestions about writing a code for a bit
oriented memory that has an access for each single bit in the array
---- simple memory bitwise -------------------------
signal mem : std_ulogic_vector((size-1) downto 0)
process (clk)
if rising_edge(Clk) then
if write then
mem(address)<= input;
end if
end if
output <= mem(address);
end process
------------------------------------------

bye Thomas
 

Welcome to EDABoard.com

Sponsor

Back
Top