content
stringlengths
1
1.04M
------------------------------------------------------------ -- mini-projet VHDL -- Le testBench du systemE de simulation d'un VGA -- Elhamer Oussama abdelkhalek -- après 1 ms le système declanche en mettant Reset a '0' ------------------------------------------------------------ LIBRARY ieee; USE ieee.std_logic_116...
-- -- GPIOs on DE10-Nano -- -- Author(s): -- * Rodrigo A. Melo -- -- Copyright (c) 2017 Authors and INTI -- Distributed under the BSD 3-Clause License -- library IEEE; use IEEE.std_logic_1164.all; entity Top is port ( dips_i : in std_logic_vector(3 downto 0); pbs_i : in std_logic_vector(1 downto 0);...
-- NEED RESULT: ARCH00381.P1: Multi inertial transactions occurred on concurrent signal asg passed -- NEED RESULT: ARCH00381.P2: Multi inertial transactions occurred on concurrent signal asg passed -- NEED RESULT: ARCH00381.P3: Multi inertial transactions occurred on concurrent signal asg passed -- NEED RESULT: ARCH...
-- megafunction wizard: %RAM: 1-PORT% -- GENERATION: STANDARD -- VERSION: WM1.0 -- MODULE: altsyncram -- ============================================================ -- File Name: ram_dq_PHASE_n.vhd -- Megafunction Name(s): -- altsyncram -- -- Simulation Library Files(s): -- altera_mf -- =======================...
-- megafunction wizard: %RAM: 1-PORT% -- GENERATION: STANDARD -- VERSION: WM1.0 -- MODULE: altsyncram -- ============================================================ -- File Name: ram_dq_PHASE_n.vhd -- Megafunction Name(s): -- altsyncram -- -- Simulation Library Files(s): -- altera_mf -- =======================...
-- 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...
--Libraries imports library ieee; use ieee.std_logic_1164.all; --Entity declaration ENTITY minNbits IS GENERIC( N : IN NATURAL := 16 ); PORT( A : IN STD_LOGIC_VECTOR(N-1 DOWNTO 0); S : OUT STD_LOGIC_VECTOR(N-1 DOWNTO 0) ); END; --Architecture behavior ARCHITECTURE behavior OF minNbits IS COMPONENT NotNbi...
library ieee; use ieee.std_logic_1164.all; entity topo is port (SW : IN STD_LOGIC_VECTOR(9 downto 0); LEDR : OUT STD_LOGIC_VECTOR(9 downto 0) ); end topo; architecture topo_estru of topo is signal C1, C2, C3, C4: std_logic; component HA port (A : in std_logic; B : in std_logic; COUT : out std_logic; S : out...
package pkg_FileIO is ------------------------------- -- Define some basic data types ------------------------------- subtype t_BYTE is integer range 0 to 2**8 - 1; --------------------------------------- -- And arrays of those basic data types -------------------------------------...
package pkg_FileIO is ------------------------------- -- Define some basic data types ------------------------------- subtype t_BYTE is integer range 0 to 2**8 - 1; --------------------------------------- -- And arrays of those basic data types -------------------------------------...
-- 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...
---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 16:01:04 12/13/2009 -- Design Name: -- Module Name: rsa_top - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Description: -- -- Dependencies: -- -- Revisio...
-- megafunction wizard: %RAM: 2-PORT% -- GENERATION: STANDARD -- VERSION: WM1.0 -- MODULE: altsyncram -- ============================================================ -- File Name: dpram.vhd -- Megafunction Name(s): -- altsyncram -- -- Simulation Library Files(s): -- altera_mf -- ================================...
-- VHDL 93 library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; use work.example_vhd_pkg.all; entity vhd_dut is generic ( width : integer := 8; addressWidth : integer := 8 ); port ( address : in std_ulogic_vector(addressWidth-1 downto 0); writeEnable : in std_ulog...
-- VHDL 93 library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; use work.example_vhd_pkg.all; entity vhd_dut is generic ( width : integer := 8; addressWidth : integer := 8 ); port ( address : in std_ulogic_vector(addressWidth-1 downto 0); writeEnable : in std_ulog...
-- (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 ...
library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; entity shifter is port ( operation : in std_logic_vector(2 downto 0); enable : in std_logic := '1'; -- instruction(1) no_data_shift : in std_logic := '0'; c_in : in std_logic; ...
library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; entity shifter is port ( operation : in std_logic_vector(2 downto 0); enable : in std_logic := '1'; -- instruction(1) no_data_shift : in std_logic := '0'; c_in : in std_logic; ...
------------------------------------------------------------------------------ -- 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...
----------------------------------------------------------------------------------- -- Created by Sam Rohrer -- -- Beamforms in the nearfield based on a generic for distance -- -- This is the actual processing that was written for the FPGA ...
--------------------------------------------------------------------- ---- 7segment.vhdl ---- ---- ---- Contains definitions for 0-9 and A-f for 7-segment displays ---- -------------------------------------------...
----------------------------------------------------------------------------- ----------------------------------------------------------------------------- -- -- -- This file is part of the DE0 Nano Linux project -- -- http...
entity tb_assert5 is generic (with_err : boolean := False); end tb_assert5; library ieee; use ieee.std_logic_1164.all; architecture behav of tb_assert5 is signal v : std_logic_Vector (7 downto 0); signal en : std_logic := '0'; signal rst : std_logic; signal clk : std_logic; signal res : std_logic; begin ...
-- VHDL de um Registrador de Deslocamento para a direita library ieee; use ieee.std_logic_1164.all; entity registrador_deslocamento is port(clock : in std_logic; load : in std_logic; shift : in std_logic; RIN : in std_logic; entrada : in std_logic...
-- -- Copyright (c) 2008-2015 Sytse van Slooten -- -- Permission is hereby granted to any person obtaining a copy of these VHDL source files and -- other language source files and associated documentation files ("the materials") to use -- these materials solely for personal, non-commercial purposes. -- You are also gr...
-- -- USB Full-Speed/Hi-Speed Device Controller core - ulpi_port.vhdl -- -- Copyright (c) 2015 Konstantin Oblaukhov -- -- 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, ...
-------------------------------------------------------------------------------- -- LGPL v2.1, Copyright (c) 2014 Johannes Walter <johannes@wltr.io> -- -- Description: -- Decode the ADS1281 bit streams M0 and M1 according to the equation from -- the data sheet. ----------------------------------------------------...
library verilog; use verilog.vl_types.all; entity cpu is end cpu;
library verilog; use verilog.vl_types.all; entity cpu is end cpu;
---------------------------------------------------------------------------------- --! Company: EDAQ WIS. --! Engineer: juna --! --! Create Date: 18/03/2015 --! Module Name: EPROC_OUT4 --! Project Name: FELIX ---------------------------------------------------------------------------------- --! Use ...
-- tb_Test_Pattern_Generator.vhd -- Generated using ACDS version 13.1 162 at 2015.02.11.10:36:06 library IEEE; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; entity tb_Test_Pattern_Generator is end entity tb_Test_Pattern_Generator; architecture rtl of tb_Test_Pattern_Generator is component Test_Pattern_Gen...
-- tb_Test_Pattern_Generator.vhd -- Generated using ACDS version 13.1 162 at 2015.02.11.10:36:06 library IEEE; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; entity tb_Test_Pattern_Generator is end entity tb_Test_Pattern_Generator; architecture rtl of tb_Test_Pattern_Generator is component Test_Pattern_Gen...
-------------------------------------------------------------------------------- --Copyright (c) 2014, Benjamin Bässler <ccl@xunit.de> --All rights reserved. -- --Redistribution and use in source and binary forms, with or without --modification, are permitted provided that the following conditions are met: -- --* Redis...
------------------------------------------------------------------------------- -- -- Ce bloc envoie des messages tous les 1000 ticks au PC -- ------------------------------------------------------------------------------- library IEEE; use IEEE.std_logic_1164.all; use ieee.numeric_std.all; ENTITY checker IS GENERIC...
-- Copyright 1986-2016 Xilinx, Inc. All Rights Reserved. -- -------------------------------------------------------------------------------- -- Tool Version: Vivado v.2016.3 (win64) Build 1682563 Mon Oct 10 19:07:27 MDT 2016 -- Date : Thu Sep 28 11:48:21 2017 -- Host : vldmr-PC running 64-bit Service ...
------------------------------------------------------------------------------- -- -- T8039 Microcontroller System -- -- $Id: t8039-c.vhd,v 1.2 2004-12-03 19:43:12 arniml Exp $ -- -- Copyright (c) 2004, Arnim Laeuger (arniml@opencores.org) -- -- All rights reserved -- ---------------------------------------------------...
--------------------------------------------------------------------------------- -- Title : UDP TX Fragmenter -- Project : General Purpose Core --------------------------------------------------------------------------------- -- File : UdpTxFragmenter.vhd -- Author : Kurtis Nishimura ----...
-- -*- vhdl -*- ------------------------------------------------------------------------------- -- Copyright (c) 2012, The CARPE Project, All rights reserved. -- -- See the AUTHORS file for individual contributors. -- -- ...
-- $Id: tb_tst_sram_n4d.vhd 1181 2019-07-08 17:00:50Z mueller $ -- SPDX-License-Identifier: GPL-3.0-or-later -- Copyright 2018- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de> -- ------------------------------------------------------------------------------ -- Module Name: tb_tst_sram_n4d -- Description: Configurat...
-- Copyright (C) 2002 Morgan Kaufmann Publishers, Inc -- This file is part of VESTs (Vhdl tESTs). -- VESTs 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 o...
-- Copyright (C) 2002 Morgan Kaufmann Publishers, Inc -- This file is part of VESTs (Vhdl tESTs). -- VESTs 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 o...
-- Copyright (C) 2002 Morgan Kaufmann Publishers, Inc -- This file is part of VESTs (Vhdl tESTs). -- VESTs 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 o...
------------------------------------------------------------------------------ -- This file is a part of the GRLIB VHDL IP LIBRARY -- Copyright (C) 2003 - 2008, Gaisler Research -- Copyright (C) 2008, 2009, Aeroflex Gaisler -- -- This program is free software; you can redistribute it and/or modify -- it under the ...
------------------------------------------------------------------------------- --! @file onewire_interface.vhd --! @author Johannes Walter <johannes@greenshire.io> --! @copyright LGPL v2.1 --! @brief 1-wire bus interface. ------------------------------------------------------------------------------- libr...
-- Copyright 1986-2016 Xilinx, Inc. All Rights Reserved. -- -------------------------------------------------------------------------------- -- Tool Version: Vivado v.2016.4 (win64) Build 1733598 Wed Dec 14 22:35:39 MST 2016 -- Date : Sun Apr 09 08:38:15 2017 -- Host : GILAMONSTER running 64-bit major rel...
------------------------------------------------------------------------------ -- 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 - 2016, Cobham Gaisler -- -- This program is free software; you can ...
library ieee; use ieee.std_logic_1164.all; use work.aua_types.all; entity aua_tb is end aua_tb; architecture aua_test of aua_tb is component aua port ( clk_in : in std_logic; reset_pin : in std_logic; switch_pins : in std_logic_vector(15 downto 0); led_pins : out std_logic_vector(15 downto 0); ...
------------------------------------------------------------------------------- --! @file openhub-rtl-ea.vhd -- --! @brief OpenHUB -- --! @details This is the openHUB using RMII Rx and Tx lines. ------------------------------------------------------------------------------- -- -- (c) B&R, 2013 -- -- Redistributio...
------------------------------------------------------------------------------ -- 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...
------------------------------------------------------------------------------ -- 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 b...
------------------------------------------------------------------------------ -- 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 b...
-- Copyright (C) 1991-2011 Altera Corporation -- Your use of Altera Corporation's design tools, logic functions -- and other software and tools, and its AMPP partner logic -- functions, and any output files from any of the foregoing -- (including device programming or simulation files), and any -- associated docume...
library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; use ieee.std_logic_arith.all; use ieee.std_logic_unsigned.all; entity MicroProcessor is port( clk : in std_logic; rst : in std_logic; start : in std_logic; stop : out std_logic ); end MicroProcessor; architecture M...
package bug_pkg is procedure proc_bug(constant t : in time := 8.68 us); procedure proc_ok1(constant t : in time); procedure proc_ok2(constant t : in integer := 5); end bug_pkg; package body bug_pkg is procedure proc_bug(constant t : in time := 8.68 us) is begin end proc_bug; procedure proc_ok1(const...
package bug_pkg is procedure proc_bug(constant t : in time := 8.68 us); procedure proc_ok1(constant t : in time); procedure proc_ok2(constant t : in integer := 5); end bug_pkg; package body bug_pkg is procedure proc_bug(constant t : in time := 8.68 us) is begin end proc_bug; procedure proc_ok1(const...
------------------------------------------------------------------------------- -- File Name : JFIFGen.vhd -- -- Project : JPEG_ENC -- -- Module : JFIFGen -- -- Content : JFIF Header Generator -- -- Description : -- -- Spec. : -- -- Author : Michal Krepa -- ----------------------------------------------...
------------------------------------------------------------------------------- -- File Name : JFIFGen.vhd -- -- Project : JPEG_ENC -- -- Module : JFIFGen -- -- Content : JFIF Header Generator -- -- Description : -- -- Spec. : -- -- Author : Michal Krepa -- ----------------------------------------------...
---------------------------------------------------------------------------------- -- Company: LARC - Escola Politecnica - University of Sao Paulo -- Engineer: Pedro Maat C. Massolino -- -- Create Date: 05/12/2012 -- Design Name: Tb_Syndrome_Calculator_n -- Module Name: Tb_Syndrome_Calculator_n -- Project Na...
-- -- EnvelopeGenerator.vhd -- The envelope generator module of VM2413 -- library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; use WORK.VM2413.ALL; entity EnvelopeGenerator is port (clk : in std_logic; reset : in std_logic; clkena : in std_logic; slot...
-- -- EnvelopeGenerator.vhd -- The envelope generator module of VM2413 -- library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; use WORK.VM2413.ALL; entity EnvelopeGenerator is port (clk : in std_logic; reset : in std_logic; clkena : in std_logic; slot...
-- ------------------------------------------------------------- -- -- Generated Configuration for pad_tb -- -- Generated -- by: wig -- on: Thu Jan 19 07:44:48 2006 -- cmd: /cygdrive/h/work/eclipse/MIX/mix_0.pl -strip -nodelta ../padio2.xls -- -- !!! Do not edit this file! Autogenerated by MIX !!! -- $Author: wig ...
library verilog; use verilog.vl_types.all; entity control is port( reset : in vl_logic; rb : in vl_logic; eq : in vl_logic; d7 : in vl_logic; d711 : in vl_logic; d2312 : in v...
-- Author: Osama G. Attia -- email: ogamal [at] iastate dot edu -- Create Date: 16:57:25 06/23/2014 -- Module Name: scc_process2 - Behavioral -- Description: Request rInfo[id] and SCC[id] library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; library unisim; use unisim.vco...
-- 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: sys_conf.vhd 410 2011-09-18 11:23:09Z mueller $ -- -- Copyright 2011- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de> -- -- This program is free software; you may redistribute and/or modify it under -- the terms of the GNU General Public License as published by the Free -- Software Foundation, either version 2, o...
-- $Id: sys_conf.vhd 410 2011-09-18 11:23:09Z mueller $ -- -- Copyright 2011- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de> -- -- This program is free software; you may redistribute and/or modify it under -- the terms of the GNU General Public License as published by the Free -- Software Foundation, either version 2, o...
LIBRARY ieee; USE IEEE.STD_LOGIC_1164.ALL; USE IEEE.STD_LOGIC_TEXTIO.ALL; USE STD.TEXTIO.ALL; -- Uncomment the following library declaration if using -- arithmetic functions with Signed or Unsigned values --USE ieee.numeric_std.ALL; ENTITY ImageFilter_tb IS END ImageFilter_tb; ARCHITECTURE behavior OF ImageFilter...
library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_arith.all; use ieee.std_logic_unsigned.all; use ieee.numeric_std.all; entity adder is port( a : in std_logic_vector(31 downto 0); b : in std_logic_vector(31 downto 0); y : out std_logic_vector(31 downto 0) ); end entity; archite...
-- megafunction wizard: %LPM_COMPARE% -- GENERATION: STANDARD -- VERSION: WM1.0 -- MODULE: lpm_compare -- ============================================================ -- File Name: lpm_compare0.vhd -- Megafunction Name(s): -- lpm_compare -- ============================================================ -- **********...
library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; use work.approximationTable.all; entity static_approximation_wrapper is generic ( numInj : integer := 268; numIn : integer := 70; numOut : integer := 41); port ( clk : in std_logic; rst : in std...
library ieee; use ieee.std_logic_1164.all; use work.arch_defs.all; use work.utils.all; use work.memory_map.all; use work.txt_utils.all; entity async_ram is generic ( MEMSIZE :integer := 8 ); port ( address : in addr_t; din : in word_t; dout : out word_t; size ...
---------------------------------------------------------------------------------- -- Company: -- Engineer: Ali Diouri -- -- Create Date: 20:59:21 05/03/2012 -- Design Name: -- Module Name: KbdCore - Behavioral -- Project Name: Keyboard IP -- Target Devices: -- Tool versions: Xilinx ISE 14.4 -- Descripti...
---------------------------------------------------------------------------------- -- Company: -- Engineer: Ali Diouri -- -- Create Date: 20:59:21 05/03/2012 -- Design Name: -- Module Name: KbdCore - Behavioral -- Project Name: Keyboard IP -- Target Devices: -- Tool versions: Xilinx ISE 14.4 -- Descripti...
library ieee; use ieee.std_logic_1164.all; -- VAGE (VHDL Advanced Game Engine) demo using the 'Adventure' game demo and -- the Altera DE2 board as a hardware platform. The purpose of this file is -- simply to instantiate the game top entity. It should not contain any game- -- related code. This is also a perfect...
`protect begin_protected `protect version = 1 `protect encrypt_agent = "XILINX" `protect encrypt_agent_info = "Xilinx Encryption Tool 2014" `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 2014" `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 2014" `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...
-- (c) Copyright 1995-2017 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 ...
-- (c) Copyright 1995-2017 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 ...
package STRSYN is attribute SigDir : string; attribute SigType : string; attribute SigBias : string; end STRSYN; entity op is port ( terminal in1: electrical; terminal in2: electrical; terminal out1: electrical; terminal vbias1: electrical; terminal vdd: electrical; termina...
------------------------------------------------------------------------------- -- Title : Testbench for design "adc_ltc2351_module" -- Project : ------------------------------------------------------------------------------- -- File : adc_ltc2351_module_tb.vhd -- Author : strongly-typed -- Company ...
------------------------------------------------------------------------------- -- Title : Testbench for design "adc_ltc2351_module" -- Project : ------------------------------------------------------------------------------- -- File : adc_ltc2351_module_tb.vhd -- Author : strongly-typed -- Company ...
-- Copyright (c) 2015 CERN -- Maciej Suminski <maciej.suminski@cern.ch> -- -- This source code is free software; you can redistribute it -- and/or modify it in source code form under the terms of the GNU -- General Public License as published by the Free Software -- Foundation; either version 2 of the License, or (at y...
-- Copyright (c) 2015 CERN -- Maciej Suminski <maciej.suminski@cern.ch> -- -- This source code is free software; you can redistribute it -- and/or modify it in source code form under the terms of the GNU -- General Public License as published by the Free Software -- Foundation; either version 2 of the License, or (at y...
-- Copyright (c) 2015 CERN -- Maciej Suminski <maciej.suminski@cern.ch> -- -- This source code is free software; you can redistribute it -- and/or modify it in source code form under the terms of the GNU -- General Public License as published by the Free Software -- Foundation; either version 2 of the License, or (at y...
-- ============================================================== -- RTL generated by Vivado(TM) HLS - High-Level Synthesis from C, C++ and SystemC -- Version: 2015.4 -- Copyright (C) 2015 Xilinx Inc. All rights reserved. -- -- =========================================================== library IEEE; use IEEE.std_log...
---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 05/11/2017 10:26:23 AM -- Design Name: -- Module Name: app_package - Behavioral -- Project Name: -- Target Devices: -- Tool Versions: -- Description: -- -- Dependencies: -- -- Revisi...
-- Copyright (C) 2002 Morgan Kaufmann Publishers, Inc -- This file is part of VESTs (Vhdl tESTs). -- VESTs 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 o...
-- Copyright (C) 2002 Morgan Kaufmann Publishers, Inc -- This file is part of VESTs (Vhdl tESTs). -- VESTs 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 o...
-- Copyright (C) 2002 Morgan Kaufmann Publishers, Inc -- This file is part of VESTs (Vhdl tESTs). -- VESTs 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 o...
------------------------------------------------------------------------------ -- 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...
-- Copyright (c) 2012 Brian Nezvadovitz <http://nezzen.net> -- This software is distributed under the terms of the MIT License shown below. -- -- 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 Softw...
-- 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...