URL
https://opencores.org/ocsvn/xmatchpro/xmatchpro/trunk
Subversion Repositories xmatchpro
[/] [xmatchpro/] [trunk/] [xmw4-comdec/] [src/] [oda_cell_2_d_1.vhd] - Rev 9
Go to most recent revision | Compare with Previous | Blame | View Log
--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 = ODA_CELL -- -- version = 1.0 -- -- last update = 30/09/99 -- -- author = Jose Nunez -- --------------------------------- -- FUNCTION -- basic component cell of the Out of Date Adaptation register -- PIN MAP -- PREVIOUS : the bit on top -- ACTUAL : the bit on horizontal -- MOVE_OUT : move output -- CLK : system clock -- RESET : asyncronous reset library IEEE; use IEEE.std_logic_1164.all; entity ODA_CELL_2_D_1 is port ( PREVIOUS : in bit; MOVE_ENABLE : in bit; CONTROL : in bit; ACTUAL : in bit; CLK : in bit; CLEAR : in bit; RESET : in bit; MOVE_OUT : out bit ); end ODA_CELL_2_D_1; architecture STRUCTURAL of ODA_CELL_2_D_1 is signal MUX : bit; signal MOVE_OUT_aux : bit; begin process(CLK,RESET,CLEAR) begin if(CLEAR='0') then MOVE_OUT_aux <= '1'; elsif (CLK'event and CLK='1') then if(RESET='0') then MOVE_OUT_aux <= '1'; elsif (MOVE_ENABLE = '0') then MOVE_OUT_aux <= MUX; else MOVE_OUT_aux <= MOVE_OUT_aux; end if; end if; end process; MUX <= ACTUAL when CONTROL = '0' else PREVIOUS; MOVE_OUT <= MOVE_OUT_aux; end STRUCTURAL;
Go to most recent revision | Compare with Previous | Blame | View Log