URL
https://opencores.org/ocsvn/mips_enhanced/mips_enhanced/trunk
Subversion Repositories mips_enhanced
[/] [mips_enhanced/] [trunk/] [grlib-gpl-1.0.19-b3188/] [lib/] [techmap/] [maps/] [ringosc.vhd] - Rev 2
Compare with Previous | Blame | View Log
------------------------------------------------------------------------------ -- This file is a part of the GRLIB VHDL IP LIBRARY -- Copyright (C) 2003, Gaisler Research -- -- 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 2 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 ----------------------------------------------------------------------------- -- Entity: ringosc -- File: ringosc.vhd -- Author: Jiri Gaisler - Gaisler Research -- Description: Ring-oscillator with tech mapping ------------------------------------------------------------------------------ library IEEE; use IEEE.Std_Logic_1164.all; library techmap; use techmap.gencomp.all; entity ringosc is generic (tech : integer := 0); port ( roen : in Std_ULogic; roout : out Std_ULogic); end ; architecture rtl of ringosc is component ringosc_dare port ( roen : in Std_ULogic; roout : out Std_ULogic); end component; begin dr : if tech = rhumc generate drx : ringosc_dare port map (roen, roout); end generate; -- pragma translate_off gen : if tech /= rhumc generate signal tmp : std_ulogic := '0'; begin tmp <= not tmp after 1 ns when roen = '1' else '0'; roout <= tmp; end generate; -- pragma translate_on end architecture rtl;