OpenCores
URL https://opencores.org/ocsvn/xmatchpro/xmatchpro/trunk
--This library is free software; you can redistribute it and/or --modify it under the terms of the GNU Lesser General Public --License as published by the Free Software Foundation; either --version 2.1 of the License, or (at your option) any later version. --This library 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 --Lesser General Public License for more details. --You should have received a copy of the GNU Lesser General Public --License along with this library; if not, write to the Free Software --Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -- e_mail : j.l.nunez-yanez@byacom.co.uk --------------------------------- -- ENTITY = LATCH98 -- -- version = 1.0 -- -- last update = 1/06/01 -- -- author = Jose Nunez -- --------------------------------- -- FUNCTION -- 99 bit latch -- PIN LIST -- D_IN = input data bus -- CLEAR = asynchronous clear of latch -- CLK = master clock -- D_OUT = output data bus library ieee,dzx; use ieee.std_logic_1164.all; entity LATCH98 is port ( D_IN : in bit_vector(97 downto 0); CLEAR : in bit; RESET : in bit; CLK : in bit; D_OUT : out bit_vector(97 downto 0) ); end LATCH98; architecture FLIP_FLOP of LATCH98 is begin FLOP : process (CLK,CLEAR) begin if (CLEAR = '0') then D_OUT <= "00" & x"000000000000000000000000"; elsif ((CLK'event) and (CLK = '1')) then if (RESET = '0') then D_OUT <= "00" & x"000000000000000000000000"; else D_OUT <= D_IN; end if; end if; end process FLOP; end FLIP_FLOP; -- end of architecture

Subversion Repositories xmatchpro

[/] [xmatchpro/] [trunk/] [xmw4-comdec/] [xmatch_sim7/] [src/] [latch98.vhd] - Blame information for rev 9

Details | Compare with Previous | View Log

Line No. Rev Author Line

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.