##// END OF EJS Templates
temp : update ADC driver...
temp : update ADC driver - conversion part clocked by clk_49 (49.152 MHz) - cnv_clk = clk_49.152/100 with duty cycle of 50% - 3 period for each Ren, - Data sampling during the 2nd cycle of Ren, - each 2 data input, 1 data output (@)

File last commit:

r100:fc97c34d69e3 martin
r594:a9702b7364d2 simu_with_Leon3
Show More
RAM.vhd
67 lines | 2.3 KiB | text/x-vhdl | VhdlLexer
martin
update ADC
r98 ------------------------------------------------------------------------------
-- This file is a part of the LPP VHDL IP LIBRARY
-- Copyright (C) 2009 - 2010, Laboratory of Plasmas Physic - CNRS
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program; if not, write to the Free Software
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-------------------------------------------------------------------------------
-- Author : Alexis Jeandet
-- Mail : alexis.jeandet@lpp.polytechnique.fr
----------------------------------------------------------------------------
library ieee;
use ieee.std_logic_1164.all;
use IEEE.numeric_std.all;
entity RAM is
martin
Mise a jour Projets blanc
r100 generic(
Input_SZ_1 : integer := 8
);
port( WD : in std_logic_vector(Input_SZ_1-1 downto 0); RD : out
std_logic_vector(Input_SZ_1-1 downto 0);WEN, REN : in std_logic;
martin
update ADC
r98 WADDR : in std_logic_vector(7 downto 0); RADDR : in
std_logic_vector(7 downto 0);RWCLK, RESET : in std_logic
) ;
end RAM;
architecture DEF_ARCH of RAM is
martin
Mise a jour Projets blanc
r100 type RAMarrayT is array (0 to 255) of std_logic_vector(Input_SZ_1-1 downto 0);
signal RAMarray : RAMarrayT:=(others => std_logic_vector(to_unsigned(0,Input_SZ_1)));
signal RD_int : std_logic_vector(Input_SZ_1-1 downto 0);
martin
update ADC
r98
begin
RD_int <= RAMarray(to_integer(unsigned(RADDR)));
process(RWclk,reset)
begin
if reset = '0' then
martin
Mise a jour Projets blanc
r100 RD <= (std_logic_vector(to_unsigned(0,Input_SZ_1)));
martin
update ADC
r98 rst:for i in 0 to 255 loop
RAMarray(i) <= (others => '0');
end loop;
elsif RWclk'event and RWclk = '1' then
if REN = '0' then
RD <= RD_int;
end if;
if WEN = '0' then
RAMarray(to_integer(unsigned(WADDR))) <= WD;
end if;
end if;
end process;
end DEF_ARCH;