content
stringlengths
1
1.04M
library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; library work; use work.io_bus_bfm_pkg.all; use work.tl_flat_memory_model_pkg.all; use work.c1541_pkg.all; use work.tl_string_util_pkg.all; entity c1541_startup_tc is end; architecture tc of c1541_startup_tc is begin i_harness...
-- ============================================================== -- RTL generated by Vivado(TM) HLS - High-Level Synthesis from C, C++ and SystemC -- Version: 2017.4 -- Copyright (C) 1986-2017 Xilinx, Inc. All Rights Reserved. -- -- =========================================================== library IEEE; use IEEE.s...
library ieee; use ieee.std_logic_1164.all; entity subBlock is port (outPort : out std_logic; inPort : in std_logic_vector(3 downto 0) ); end entity subBlock; architecture behavioral of subBlock is begin outPort <= inPort(0); end architecture behavioral;
architecture RTl of FIFO is component fifo is end component fifo; -- Failures below component fifo is end component fifo; signal sig1 : std_logic; begin end architecture RTL;
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify i...
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify i...
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify i...
------------------------------------------------------------------------------ -- This file is a part of the GRLIB VHDL IP LIBRARY -- Copyright (C) 2003 - 2008, Gaisler Research -- Copyright (C) 2008 - 2013, Aeroflex Gaisler -- -- This program is free software; you can redistribute it and/or modify -- it under the...
library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; entity register_file is port( clk : in std_logic; aa : in std_logic_vector( 4 downto 0); ab : in std_logic_vector( 4 downto 0); aw : in std_logic_vector( 4 downto 0); wren : in s...
-- Copyright (c) 2019 Tampere University. -- -- This file is part of TTA-Based Codesign Environment (TCE). -- -- Permission is hereby granted, free of charge, to any person obtaining a -- copy of this software and associated documentation files (the "Software"), -- to deal in the Software without restriction, including...
-- Copyright (c) 2019 Tampere University. -- -- This file is part of TTA-Based Codesign Environment (TCE). -- -- Permission is hereby granted, free of charge, to any person obtaining a -- copy of this software and associated documentation files (the "Software"), -- to deal in the Software without restriction, including...
-- The Potato Processor - A simple processor for FPGAs -- (c) Kristian Klomsten Skordal 2014 <kristian.skordal@wafflemail.net> -- Report bugs and issues on <https://github.com/skordal/potato/issues> library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; use work.pp_types.all; --! @brief --! Arithmetic ...
-------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 21:56:36 11/29/2009 -- Design Name: -- Module Name: E:/FPGA/Projects/Current Projects/Systems/OZ-3/IFetch_TB.vhd -- Project Name: OZ-3 -- Target Device: -- Tool versions: -...
-------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 21:56:36 11/29/2009 -- Design Name: -- Module Name: E:/FPGA/Projects/Current Projects/Systems/OZ-3/IFetch_TB.vhd -- Project Name: OZ-3 -- Target Device: -- Tool versions: -...
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify i...
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify i...
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify i...
------------------------------------------- -- CHECKED AND MODIFIED BY WALEED ------------------------------------------- --UPDATED ON: 6/4/10 ------------------------------------------- library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_arith.all; use ieee.std_logic_unsigned.all; entity store_buffer is po...
------------------------------------------- -- CHECKED AND MODIFIED BY WALEED ------------------------------------------- --UPDATED ON: 6/4/10 ------------------------------------------- library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_arith.all; use ieee.std_logic_unsigned.all; entity store_buffer is po...
------------------------------------------- -- CHECKED AND MODIFIED BY WALEED ------------------------------------------- --UPDATED ON: 6/4/10 ------------------------------------------- library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_arith.all; use ieee.std_logic_unsigned.all; entity store_buffer is po...
-- (c) Copyright 1995-2015 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant ...
-- Test Bench for cores using AMBA Bus signals -- LA 6.03.02 library IEEE; use IEEE.std_logic_1164.all; use IEEE.std_logic_unsigned."+"; use IEEE.std_logic_unsigned."-"; use work.iface.all; use work.amba.all; entity tbamba is generic ( doit : std_logic :='1' ); end tbamba; architecture behav of tbamba...
------------------------------------------------------------------------------ -- This file is a part of the GRLIB VHDL IP LIBRARY -- Copyright (C) 2003 - 2008, Gaisler Research -- Copyright (C) 2008 - 2014, Aeroflex Gaisler -- Copyright (C) 2015, Cobham Gaisler -- -- This program is free software; you can redistr...
entity testcase2 is port(clk: in bit); begin check: assert clk'delayed'last_event >= 10 ns; end entity testcase2; architecture empty of testcase2 is begin end empty;
entity testcase2 is port(clk: in bit); begin check: assert clk'delayed'last_event >= 10 ns; end entity testcase2; architecture empty of testcase2 is begin end empty;
library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_arith.all; use ieee.std_logic_unsigned.all; use work.Types.all; use work.BcdPack.all; entity BCDTest is generic ( Displays : positive := 8 ); port ( Clk : in bit1; -- Segments : out word(8-1 downto 0); Display : out word(Displays-1 downto 0) ...
library verilog; use verilog.vl_types.all; entity quanta is port( hex0 : out vl_logic_vector(6 downto 0); sys_clock : in vl_logic; buttons : in vl_logic_vector(3 downto 0); switches : in vl_logic_vector(17 downto 0); hex1 ...
clock3hz_inst : clock3hz PORT MAP ( clock => clock_sig, cout => cout_sig, q => q_sig );
---------------------------------------------------------------------------------- -- Company: Laboratoire Leprince Ringuet -- Engineer: -- -- Create Date: 14:03:42 10/14/2011 -- Design Name: -- Module Name: eth_tx_crc - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Descrip...
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify i...
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify i...
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify i...
-- $Id: ram_1swsr_wfirst_gen_unisim.vhd 1181 2019-07-08 17:00:50Z mueller $ -- SPDX-License-Identifier: GPL-3.0-or-later -- Copyright 2008- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de> -- ------------------------------------------------------------------------------ -- Module Name: ram_1swsr_wfirst_gen - syn -- Des...
---------------------------------------------------------------------------------- -- Engineer: Mike Field <hamster@snap.net.nz> -- -- Module Name: dvi_in.vhd - Behavioral -- -- Description: Design to capture raw DVI-D input -- -- I've also got do do some work to automatically adjust the phase of the -- bit clocks...
---------------------------------------------------------------------------------- -- Engineer: Mike Field <hamster@snap.net.nz> -- -- Module Name: dvi_in.vhd - Behavioral -- -- Description: Design to capture raw DVI-D input -- -- I've also got do do some work to automatically adjust the phase of the -- bit clocks...
library IEEE; use IEEE.STD_LOGIC_1164.all; use IEEE.NUMERIC_STD.all; entity SeqShiftUnit is port( clk : in std_logic; dataIn: in std_logic_vector(7 downto 0); siLeft: in std_logic; siRight: in std_logic; loadEn: in std_logic; rotate: in std_logic; dirLeft: in std_logic; shArith: in std_logic; ...
library IEEE; use IEEE.STD_LOGIC_1164.all; use IEEE.NUMERIC_STD.all; entity SeqShiftUnit is port( clk : in std_logic; dataIn: in std_logic_vector(7 downto 0); siLeft: in std_logic; siRight: in std_logic; loadEn: in std_logic; rotate: in std_logic; dirLeft: in std_logic; shArith: in std_logic; ...
-------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 00:11:05 06/21/2014 -- Design Name: -- Module Name: /home/tansell/foss/utmi/hdl/serdes/tests/start_of_packet_tb.vhd -- Project Name: ise -- Target Device: -- Tool versions: -- Descri...
library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; entity fastfilter_slave is port( clk_proc : in std_logic; reset_n : in std_logic; addr_rel_i : in std_logic_vector(1 downto 0); wr_i : in std_logic; rd_i : in std_logic; datawr_i : in std_logic_vector(31 downto 0); datar...
package util is -- Possible values for key size in PRESENT are 80 bit and -- 128 bit. However, when only specifying those 2 options -- in key_enum, Vivado (version 2016.4) produces an error -- during synthesis: -- -- [Synth 8-690] width mismatch in assignment; target has 1 bits, source has 32 bi...
entity tb2 is end entity; architecture arch of tb2 is signal s: integer := 0; signal s2: integer := 0; begin process is begin wait for 1 us; s2 <= 3; s <= 1; s <= 2 after 1 us; assert s = 0; wait on s; report "s = " & integer'image(s); ass...
entity tb2 is end entity; architecture arch of tb2 is signal s: integer := 0; signal s2: integer := 0; begin process is begin wait for 1 us; s2 <= 3; s <= 1; s <= 2 after 1 us; assert s = 0; wait on s; report "s = " & integer'image(s); ass...
entity tb2 is end entity; architecture arch of tb2 is signal s: integer := 0; signal s2: integer := 0; begin process is begin wait for 1 us; s2 <= 3; s <= 1; s <= 2 after 1 us; assert s = 0; wait on s; report "s = " & integer'image(s); ass...
------------------------------------------------------------------------------- -- Title : Clock -- Project : ------------------------------------------------------------------------------- -- File : bcdtime_tb.vhd -- Author : Daniel Sun <dcsun88osh@gmail.com> -- Company : -- Created : 2016-0...
entity tb_simple is package pkg1 is constant c : natural := 5; end pkg1; end tb_simple; architecture behav of tb_simple is begin assert pkg1.c = 5 severity failure; assert pkg1.c /= 5 report "value is correct" severity note; end behav;
entity tb_simple is package pkg1 is constant c : natural := 5; end pkg1; end tb_simple; architecture behav of tb_simple is begin assert pkg1.c = 5 severity failure; assert pkg1.c /= 5 report "value is correct" severity note; end behav;
---------------------------------------------------------------------------------- -- Authors: Mike Field <hamster@snap.net.nz> -- Lauir Vosandi <lauri.vosandi@gmail.com> ---------------------------------------------------------------------------------- library ieee; use ieee.std_logic_1164.all; use ieee.numer...
---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 06.03.2014 15:08:57 -- Design Name: -- Module Name: top - Behavioral -- Project Name: -- Target Devices: -- Tool Versions: -- Description: -- -- Dependencies: -- -- Revision: -- Revi...
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify i...
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify i...
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify i...
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify i...
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify i...
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify i...
-- This file is not intended for synthesis, is is present so that simulators -- see a complete view of the system. -- You may use the entity declaration from this file as the basis for a -- component declaration in a VHDL file instantiating this entity. library IEEE; use IEEE.std_logic_1164.all; use IEEE.NUMERIC_STD....
-- This file is not intended for synthesis, is is present so that simulators -- see a complete view of the system. -- You may use the entity declaration from this file as the basis for a -- component declaration in a VHDL file instantiating this entity. library IEEE; use IEEE.std_logic_1164.all; use IEEE.NUMERIC_STD....
-- This file is not intended for synthesis, is is present so that simulators -- see a complete view of the system. -- You may use the entity declaration from this file as the basis for a -- component declaration in a VHDL file instantiating this entity. library IEEE; use IEEE.std_logic_1164.all; use IEEE.NUMERIC_STD....
-- This file is not intended for synthesis, is is present so that simulators -- see a complete view of the system. -- You may use the entity declaration from this file as the basis for a -- component declaration in a VHDL file instantiating this entity. library IEEE; use IEEE.std_logic_1164.all; use IEEE.NUMERIC_STD....
divisor120_inst : divisor120 PORT MAP ( clock => clock_sig, cout => cout_sig, q => q_sig );
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify i...
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify i...
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify i...
--traduzindo-- -------------------------------------------------------------------------------- -- -- FileName: ps2_keyboard_to_ascii.vhd -- Dependencies: ps2_keyboard.vhd, debounce.vhd -- Design Software: Quartus II 32-bit Version 12.1 Build 177 SJ Full Version -- -- HDL CODE IS PROVIDED "AS IS." ...
------------------------------------------------------------------------------ --! Copyright (C) 2017 , Emmanuel Amadio -- --! Redistribution and use in source and binary forms, with or without --! modification, are permitted provided that the following conditions --! are met: --! * Redistributions of source code m...
library ieee; use ieee.std_logic_1164.all; library ieee; use ieee.numeric_std.all; entity add_188 is port ( result : out std_logic_vector(31 downto 0); in_a : in std_logic_vector(31 downto 0); in_b : in std_logic_vector(31 downto 0) ); end add_188; architecture augh of add_188 is signal carry_inA : std_l...
library ieee; use ieee.std_logic_1164.all; library ieee; use ieee.numeric_std.all; entity add_188 is port ( result : out std_logic_vector(31 downto 0); in_a : in std_logic_vector(31 downto 0); in_b : in std_logic_vector(31 downto 0) ); end add_188; architecture augh of add_188 is signal carry_inA : std_l...
---------------------------------------------------------------------------------- -- Company: Drexel University -- Engineer: Rob Taglang -- -- Module Name: vga_sync - Behavioral -- Description: Create a sync signal for display pixel data --------------------------------------------------------------------------------...
-- ============================================================== -- File generated by Vivado(TM) HLS - High-Level Synthesis from C, C++ and SystemC -- Version: 2017.4 -- Copyright (C) 1986-2017 Xilinx, Inc. All Rights Reserved. -- -- ============================================================== library IEEE; use I...
library verilog; use verilog.vl_types.all; entity DPRAM is port( data : in vl_logic_vector(11 downto 0); rdaddress : in vl_logic_vector(8 downto 0); rdclock : in vl_logic; wraddress : in vl_logic_vector(8 downto 0); wrclock ...
library verilog; use verilog.vl_types.all; entity DPRAM is port( data : in vl_logic_vector(11 downto 0); rdaddress : in vl_logic_vector(8 downto 0); rdclock : in vl_logic; wraddress : in vl_logic_vector(8 downto 0); wrclock ...
-------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 14:56:06 02/20/2016 -- Design Name: -- Module Name: C:/Users/Arthur/Documents/FPGA_temp/VGA/tb_vga.vhd -- Project Name: VGA -- Target Device: -- Tool versions: -- Description: -- ...
-------------------------------------------------------------------------------- -- -- BLK MEM GEN v7_3 Core - Stimulus Generator For Single Port Ram -- -------------------------------------------------------------------------------- -- -- (c) Copyright 2006_3010 Xilinx, Inc. All rights reserved. -- -- This file...
-------------------------------------------------------------------------------- -- -- BLK MEM GEN v7_3 Core - Stimulus Generator For Single Port Ram -- -------------------------------------------------------------------------------- -- -- (c) Copyright 2006_3010 Xilinx, Inc. All rights reserved. -- -- This file...
-------------------------------------------------------------------------------- -- -- BLK MEM GEN v7_3 Core - Stimulus Generator For Single Port Ram -- -------------------------------------------------------------------------------- -- -- (c) Copyright 2006_3010 Xilinx, Inc. All rights reserved. -- -- This file...
-------------------------------------------------------------------------------- -- -- BLK MEM GEN v7_3 Core - Stimulus Generator For Single Port Ram -- -------------------------------------------------------------------------------- -- -- (c) Copyright 2006_3010 Xilinx, Inc. All rights reserved. -- -- This file...
-------------------------------------------------------------------------------- -- -- BLK MEM GEN v7_3 Core - Stimulus Generator For Single Port Ram -- -------------------------------------------------------------------------------- -- -- (c) Copyright 2006_3010 Xilinx, Inc. All rights reserved. -- -- This file...
-------------------------------------------------------------------------------- -- -- BLK MEM GEN v7_3 Core - Stimulus Generator For Single Port Ram -- -------------------------------------------------------------------------------- -- -- (c) Copyright 2006_3010 Xilinx, Inc. All rights reserved. -- -- This file...
-------------------------------------------------------------------------------- -- -- BLK MEM GEN v7_3 Core - Stimulus Generator For Single Port Ram -- -------------------------------------------------------------------------------- -- -- (c) Copyright 2006_3010 Xilinx, Inc. All rights reserved. -- -- This file...
-------------------------------------------------------------------------------- -- -- BLK MEM GEN v7_3 Core - Stimulus Generator For Single Port Ram -- -------------------------------------------------------------------------------- -- -- (c) Copyright 2006_3010 Xilinx, Inc. All rights reserved. -- -- This file...
-------------------------------------------------------------------------------- -- -- BLK MEM GEN v7_3 Core - Stimulus Generator For Single Port Ram -- -------------------------------------------------------------------------------- -- -- (c) Copyright 2006_3010 Xilinx, Inc. All rights reserved. -- -- This file...
-------------------------------------------------------------------------------- -- -- BLK MEM GEN v7_3 Core - Stimulus Generator For Single Port Ram -- -------------------------------------------------------------------------------- -- -- (c) Copyright 2006_3010 Xilinx, Inc. All rights reserved. -- -- This file...
-------------------------------------------------------------------------------- -- -- BLK MEM GEN v7_3 Core - Stimulus Generator For Single Port Ram -- -------------------------------------------------------------------------------- -- -- (c) Copyright 2006_3010 Xilinx, Inc. All rights reserved. -- -- This file...
-------------------------------------------------------------------------------- -- -- BLK MEM GEN v7_3 Core - Stimulus Generator For Single Port Ram -- -------------------------------------------------------------------------------- -- -- (c) Copyright 2006_3010 Xilinx, Inc. All rights reserved. -- -- This file...
library ieee; use ieee.pkg.all; entity tieee is end; architecture behav of tieee is begin assert cst = 5 severity failure; end behav;
-- $Id: sys_w11a_br_as7.vhd 1211 2021-08-28 11:20:34Z mueller $ -- SPDX-License-Identifier: GPL-3.0-or-later -- Copyright 2018-2019 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de> -- ------------------------------------------------------------------------------ -- Module Name: sys_w11a_br_as7 - syn -- Description: ...
`protect begin_protected `protect version = 1 `protect encrypt_agent = "XILINX" `protect encrypt_agent_info = "Xilinx Encryption Tool 2013" `protect key_keyowner = "Cadence Design Systems.", key_keyname= "cds_rsa_key", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 64) `protect ke...
`protect begin_protected `protect version = 1 `protect encrypt_agent = "XILINX" `protect encrypt_agent_info = "Xilinx Encryption Tool 2013" `protect key_keyowner = "Cadence Design Systems.", key_keyname= "cds_rsa_key", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 64) `protect ke...
`protect begin_protected `protect version = 1 `protect encrypt_agent = "XILINX" `protect encrypt_agent_info = "Xilinx Encryption Tool 2013" `protect key_keyowner = "Cadence Design Systems.", key_keyname= "cds_rsa_key", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 64) `protect ke...
`protect begin_protected `protect version = 1 `protect encrypt_agent = "XILINX" `protect encrypt_agent_info = "Xilinx Encryption Tool 2013" `protect key_keyowner = "Cadence Design Systems.", key_keyname= "cds_rsa_key", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 64) `protect ke...
`protect begin_protected `protect version = 1 `protect encrypt_agent = "XILINX" `protect encrypt_agent_info = "Xilinx Encryption Tool 2013" `protect key_keyowner = "Cadence Design Systems.", key_keyname= "cds_rsa_key", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 64) `protect ke...
`protect begin_protected `protect version = 1 `protect encrypt_agent = "XILINX" `protect encrypt_agent_info = "Xilinx Encryption Tool 2013" `protect key_keyowner = "Cadence Design Systems.", key_keyname= "cds_rsa_key", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 64) `protect ke...
`protect begin_protected `protect version = 1 `protect encrypt_agent = "XILINX" `protect encrypt_agent_info = "Xilinx Encryption Tool 2013" `protect key_keyowner = "Cadence Design Systems.", key_keyname= "cds_rsa_key", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 64) `protect ke...
`protect begin_protected `protect version = 1 `protect encrypt_agent = "XILINX" `protect encrypt_agent_info = "Xilinx Encryption Tool 2013" `protect key_keyowner = "Cadence Design Systems.", key_keyname= "cds_rsa_key", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 64) `protect ke...
`protect begin_protected `protect version = 1 `protect encrypt_agent = "XILINX" `protect encrypt_agent_info = "Xilinx Encryption Tool 2013" `protect key_keyowner = "Cadence Design Systems.", key_keyname= "cds_rsa_key", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 64) `protect ke...
-- ------------------------------------------------------------- -- -- Entity Declaration for inst_b_e -- -- Generated -- by: wig -- on: Mon Mar 22 13:27:43 2004 -- cmd: H:\work\mix_new\mix\mix_0.pl -strip -nodelta ../../mde_tests.xls -- -- !!! Do not edit this file! Autogenerated by MIX !!! -- $Author: wig $ -- ...
---------------------------------------------------------------------------------- -- Project Name: Frecuency Counter -- Target Devices: Spartan 3 -- Engineers: Ángel Larrañaga Muro -- Nicolás Jurado Jiménez -- Gonzalo Matarrubia Gonzalez -- License: All files included in this proyect are licensed under ...
entity test is constant a : b := new foo'(bar); end;
-- megafunction wizard: %ALTPLL% -- GENERATION: STANDARD -- VERSION: WM1.0 -- MODULE: altpll -- ============================================================ -- File Name: pll_sys.vhd -- Megafunction Name(s): -- altpll -- -- Simulation Library Files(s): -- altera_mf -- ===========================================...
-- megafunction wizard: %ALTPLL% -- GENERATION: STANDARD -- VERSION: WM1.0 -- MODULE: altpll -- ============================================================ -- File Name: pll_sys.vhd -- Megafunction Name(s): -- altpll -- -- Simulation Library Files(s): -- altera_mf -- ===========================================...
architecture RTL of FIFO is begin end architecture FIFO; -- Violations below architecture RTL of FIFO is begin end architecture FIFO; library ieee; -- Last line in the file is okay architecture RTL of FIFO is begin end architecture FIFO;