content
stringlengths
1
1.04M
library IEEE; use IEEE.STD_LOGIC_1164.ALL; entity pong is port ( din : in std_logic_vector(31 downto 0); dout : out std_logic_vector(31 downto 0) ); end entity pong; architecture rtl of pong is begin dout <= din(23 downto 16) & din(23 downto 16) & din(7 downto 0) & din(7 downto 0); end archite...
-- ====================================================================== -- TDES encryption/decryption -- algorithm according to FIPS 46-3 specification -- Copyright (C) 2011 Torsten Meissner ------------------------------------------------------------------------- -- This program is free software; you can redistribut...
entity FIFO is generic ( G_WIDTH : integer := 256; G_DEPTH : integer := 32; prefix_GENERIC_SUFFIX : integer := 20 ); port ( I_PORT1 : in std_logic; I_PORT2 : out std_logic ); end entity FIFO; entity FIFO is generic ( G_WIDTH : integer := 256; G_DEPTH : integer := 32; prefix_G...
-- 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...
library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; entity RegistersPipeline is port( RR1, RR2, WR: in std_logic_vector(4 downto 0); WD: in std_logic_vector(31 downto 0); RegWrite: in std_logic; RD1, RD2: out std_logic_vector(31 downto 0) ); end RegistersPipeline; Architecture Str...
-- 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...
--======================================================================================================================== -- Copyright (c) 2017 by Bitvis AS. All rights reserved. -- You should have received a copy of the license file containing the MIT License (see LICENSE.TXT), if not, -- contact Bitvis AS <support...
-- VHDL projekt - Hodiny + budík na VGA výstup pomocí zaøízení FitKit 2.0 -- Aplikace po nahrání do FitKitu zobrazuje na VGA výstupu hodiny. -- Ty na zaèátku poèítají od 00:00:00. Hodiny lze nastavit pomocí klávesnice na FitKitu. -- Aplikace též umí funkci budíku (pouze vizuální). Po nastavení èasu pro budík kontrol...
library IEEE; use IEEE.std_logic_1164.all; use IEEE.std_logic_unsigned.all; use ieee.numeric_std.all; entity internalram is port ( CLK: in std_logic; EN: in std_logic; ADDR: in std_logic_vector(12 downto 2); DO: out std_logic_vector(31 downto 0) ...
-- Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. -- -------------------------------------------------------------------------------- -- Tool Version: Vivado v.2017.2 (win64) Build 1909853 Thu Jun 15 18:39:09 MDT 2017 -- Date : Tue Sep 19 09:38:22 2017 -- Host : DarkCube running 64-bit major releas...
-- The MIT License (MIT) -- Copyright (c) 2014 Shuo Li -- 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 without limitation the rights -- to use, c...
library IEEE; use IEEE.std_logic_1164.all; use IEEE.std_logic_arith.all; use IEEE.std_logic_unsigned.all; library altera; use altera.alt_dspbuilder_package.all; library lpm; use lpm.lpm_components.all; entity alt_dspbuilder_constant_GN5UKV3NIG is generic ( HDLTYPE : string := "STD_LOGIC_VECTOR"; BitPattern : ...
---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 13:18:24 10/06/2010 -- Design Name: -- Module Name: Mux4to1 - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Description: -- -- Dependencies: -- -- Revisio...
---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 13:18:24 10/06/2010 -- Design Name: -- Module Name: Mux4to1 - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Description: -- -- Dependencies: -- -- Revisio...
---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 13:18:24 10/06/2010 -- Design Name: -- Module Name: Mux4to1 - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Description: -- -- Dependencies: -- -- Revisio...
---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 13:18:24 10/06/2010 -- Design Name: -- Module Name: Mux4to1 - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Description: -- -- Dependencies: -- -- Revisio...
package p is shared variable pglobal : integer := 2; end package; ------------------------------------------------------------------------------- entity shared1 is end entity; use work.p.all; architecture test of shared1 is shared variable global : integer := 5; procedure check_it(constant expect : ...
package p is shared variable pglobal : integer := 2; end package; ------------------------------------------------------------------------------- entity shared1 is end entity; use work.p.all; architecture test of shared1 is shared variable global : integer := 5; procedure check_it(constant expect : ...
package p is shared variable pglobal : integer := 2; end package; ------------------------------------------------------------------------------- entity shared1 is end entity; use work.p.all; architecture test of shared1 is shared variable global : integer := 5; procedure check_it(constant expect : ...
package p is shared variable pglobal : integer := 2; end package; ------------------------------------------------------------------------------- entity shared1 is end entity; use work.p.all; architecture test of shared1 is shared variable global : integer := 5; procedure check_it(constant expect : ...
package p is shared variable pglobal : integer := 2; end package; ------------------------------------------------------------------------------- entity shared1 is end entity; use work.p.all; architecture test of shared1 is shared variable global : integer := 5; procedure check_it(constant expect : ...
------------------------------------------------------------------------------- -- Title : Top-level GTX wrapper for Ethernet MAC -- Project : Virtex-6 Embedded Tri-Mode Ethernet MAC Wrapper -- File : v6_gtxwizard_top.vhd -- Version : 1.4 ----------------------------------------------------------------...
-----LIBRARIES----- library ieee; use ieee.std_logic_1164.all; -----ENTITY----- entity Demultiplexer is port( data_in : in std_logic_vector(20 downto 0); disp0, disp1, disp2 : out std_logic_vector(6 downto 0) ); end Demultiplexer; -----Architecture----- architecture demuxer of Demultiplexer is begin disp0 ...
LIBRARY ieee; USE ieee.std_logic_1164.ALL; use ieee.std_logic_arith.all; -- Fun1 = A + B (aritmeetiline liitmine) entity func1 is Port ( a : in STD_LOGIC_VECTOR (3 downto 0); --4 bit input b : in STD_LOGIC_VECTOR (3 downto 0); -- 4 bit input o : out STD_LOGIC_VECTOR (3 downto 0)); --4 bit output end f...
LIBRARY ieee; USE ieee.std_logic_1164.ALL; use ieee.std_logic_arith.all; -- Fun1 = A + B (aritmeetiline liitmine) entity func1 is Port ( a : in STD_LOGIC_VECTOR (3 downto 0); --4 bit input b : in STD_LOGIC_VECTOR (3 downto 0); -- 4 bit input o : out STD_LOGIC_VECTOR (3 downto 0)); --4 bit output end f...
-------------------------------------------------------------------------------- -- Copyright (c) 1995-2010 Xilinx, Inc. All rights reserved. -------------------------------------------------------------------------------- -- ____ ____ -- / /\/ / -- /___/ \ / Vendor: Xilinx -- \ \ \/ Vers...
------------------------------------------------------------------------------ -- 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...
-- user_memory module for simulation -- -- Luz micro-controller implementation -- Eli Bendersky (C) 2008 -- library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; library work; use work.cpu_defs.all; entity user_memory is port ( clk: in std_logic; reset_n: in std_l...
-- user_memory module for simulation -- -- Luz micro-controller implementation -- Eli Bendersky (C) 2008 -- library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; library work; use work.cpu_defs.all; entity user_memory is port ( clk: in std_logic; reset_n: in std_l...
----------------------------------------------------------------------------- -- Altera DSP Builder Advanced Flow Tools Release Version 13.1 -- Quartus II development tool and MATLAB/Simulink Interface -- -- Legal Notice: Copyright 2013 Altera Corporation. All rights reserved. -- Your use of Altera Corporation...
----------------------------------------------------------------------------- -- Altera DSP Builder Advanced Flow Tools Release Version 13.1 -- Quartus II development tool and MATLAB/Simulink Interface -- -- Legal Notice: Copyright 2013 Altera Corporation. All rights reserved. -- Your use of Altera Corporation...
----------------------------------------------------------------------------- -- Altera DSP Builder Advanced Flow Tools Release Version 13.1 -- Quartus II development tool and MATLAB/Simulink Interface -- -- Legal Notice: Copyright 2013 Altera Corporation. All rights reserved. -- Your use of Altera Corporation...
----------------------------------------------------------------------------- -- Altera DSP Builder Advanced Flow Tools Release Version 13.1 -- Quartus II development tool and MATLAB/Simulink Interface -- -- Legal Notice: Copyright 2013 Altera Corporation. All rights reserved. -- Your use of Altera Corporation...
----------------------------------------------------------------------------- -- Altera DSP Builder Advanced Flow Tools Release Version 13.1 -- Quartus II development tool and MATLAB/Simulink Interface -- -- Legal Notice: Copyright 2013 Altera Corporation. All rights reserved. -- Your use of Altera Corporation...
----------------------------------------------------------------------------- -- Altera DSP Builder Advanced Flow Tools Release Version 13.1 -- Quartus II development tool and MATLAB/Simulink Interface -- -- Legal Notice: Copyright 2013 Altera Corporation. All rights reserved. -- Your use of Altera Corporation...
----------------------------------------------------------------------------- -- Altera DSP Builder Advanced Flow Tools Release Version 13.1 -- Quartus II development tool and MATLAB/Simulink Interface -- -- Legal Notice: Copyright 2013 Altera Corporation. All rights reserved. -- Your use of Altera Corporation...
----------------------------------------------------------------------------- -- Altera DSP Builder Advanced Flow Tools Release Version 13.1 -- Quartus II development tool and MATLAB/Simulink Interface -- -- Legal Notice: Copyright 2013 Altera Corporation. All rights reserved. -- Your use of Altera Corporation...
----------------------------------------------------------------------------- -- Altera DSP Builder Advanced Flow Tools Release Version 13.1 -- Quartus II development tool and MATLAB/Simulink Interface -- -- Legal Notice: Copyright 2013 Altera Corporation. All rights reserved. -- Your use of Altera Corporation...
----------------------------------------------------------------------------- -- Altera DSP Builder Advanced Flow Tools Release Version 13.1 -- Quartus II development tool and MATLAB/Simulink Interface -- -- Legal Notice: Copyright 2013 Altera Corporation. All rights reserved. -- Your use of Altera Corporation...
---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 21:49:30 01/16/2015 -- Design Name: -- Module Name: DualPortBRAM - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Description: -- -- Dependencie...
library ieee; use ieee.std_logic_1164.all; entity CPU is port( clk: in std_logic; Overflow: out std_logic ); end CPU; architecture Behavioral of CPU is component PC port( clk: in std_logic; AddressIn: in std_logic_vector(31 downto 0); AddressOut: out std_logic_vector(31 downto 0) ); ...
-- -*- vhdl -*- ------------------------------------------------------------------------------- -- Copyright (c) 2012, The CARPE Project, All rights reserved. -- -- See the AUTHORS file for individual contributors. -- -- ...
----------------------------------------------------------------------------------- -- Created by Sam Rohrer -- -- Beamforms in the nearfield based on a generic for distance -- -- Accesses memory for test data ...
---------------------------------------------------------------------------------- -- Company: LARC - Escola Politecnica - University of Sao Paulo -- Engineer: Pedro Maat C. Massolino -- -- Create Date: 05/12/2012 -- Design Name: Tb_McEliece_QD-Goppa_Decrypt_v4 -- Module Name: Tb_McEliece_QD-Goppa_Decrypt_v4...
-------------------------------------------------------------------------------- -- LGPL v2.1, Copyright (c) 2014 Johannes Walter <johannes@wltr.io> -- -- Description: -- Alternate between the outputs of the two interleaved filters. -------------------------------------------------------------------------------- ...
library ieee; library work; use ieee.std_logic_1164.all; use ieee.numeric_std.all; entity one_wire_tb is end entity; architecture rtl of one_wire_tb is -- Main clock frequency 100 MHz constant CLK_PERIOD : time := 1 sec / 10e7; constant TX_TEST_DATA : std_logic_vector(7 downto 0) := "10101010"; ...
library IEEE; use IEEE.std_logic_1164.all; use IEEE.std_logic_unsigned.all; use IEEE.numeric_std.all; use ieee.std_logic_textio.all; use std.textio.all; library work; use work.all; entity AESL_autobus_indices_samples is generic ( constant TV_IN : STRING (1 to 76) := "../tv/cdatafile/c.nfa_accep...
-- Ian Roth -- ECE 8455 -- Mandelbrot Calculation, final project LIBRARY ieee; USE ieee.std_logic_1164.all; USE ieee.numeric_std.all; LIBRARY work; USE work.fixed_pkg.all; ENTITY Mandelbrot IS PORT( x_const, y_const :IN sfixed(3 downto -32); x_in, y_in :IN sfixed(3 downto -32); iteration_in :IN unsigned(15 d...
----------------------------------------------------------------------------- -- LEON3 Demonstration design test bench configuration -- Copyright (C) 2009 Aeroflex Gaisler ------------------------------------------------------------------------------ library techmap; use techmap.gencomp.all; package config is --...
`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...
-- ------------------------------------------------------------- -- -- Generated Architecture Declaration for rtl of inst_eca_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 !...
-- 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 - 2014, Aeroflex Gaisler -- Copyright (C) 2015, Cobham Gaisler -- -- This program is free software; you can redistr...
-- 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...
library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; entity memmux03 is port ( wen : std_logic; addr : std_logic_vector (3 downto 0); rdat : out std_logic; wdat : std_logic_vector (12 downto 0); clk : std_logic; rst : std_logic); end memmux03; architecture rtl of memmux03 is ...
library IEEE; use IEEE.std_logic_1164.all; use IEEE.std_logic_arith.all; use IEEE.std_logic_unsigned.all; entity RS232Read is port( RST : in std_logic; CLK : in std_logic; Rx : in std_logic; S : out std_logic_vector(13 downto 0) ); end RS232Read; ar...
library IEEE; use IEEE.std_logic_1164.all; use IEEE.std_logic_arith.all; use IEEE.std_logic_unsigned.all; entity RS232Read is port( RST : in std_logic; CLK : in std_logic; Rx : in std_logic; S : out std_logic_vector(13 downto 0) ); end RS232Read; ar...
`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...
library ieee; library unisim; use ieee.std_logic_1164.all; use unisim.vcomponents.all; -- xilinx component declarations entity clockgen is port ( ext_clk, async_resetb : in std_ulogic; clk, sync_reset : out std_ulogic ); end clockgen; architecture virtex5 of clockgen is --------------------------...
-------------------------------------------------------------------------------- -- -- BLK MEM GEN v7.1 Core - Top-level core wrapper -- -------------------------------------------------------------------------------- -- -- (c) Copyright 2006-2010 Xilinx, Inc. All rights reserved. -- -- This file contains con...
-------------------------------------------------------------------------------- -- -- BLK MEM GEN v7.1 Core - Top-level core wrapper -- -------------------------------------------------------------------------------- -- -- (c) Copyright 2006-2010 Xilinx, Inc. All rights reserved. -- -- This file contains con...
-- (C) 1992-2014 Altera Corporation. All rights reserved. -- 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 any of the foregoing (including device programming or simulat...
-- (C) 1992-2014 Altera Corporation. All rights reserved. -- 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 any of the foregoing (including device programming or simulat...
-- (C) 1992-2014 Altera Corporation. All rights reserved. -- 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 any of the foregoing (including device programming or simulat...
-- (C) 1992-2014 Altera Corporation. All rights reserved. -- 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 any of the foregoing (including device programming or simulat...
-- (C) 1992-2014 Altera Corporation. All rights reserved. -- 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 any of the foregoing (including device programming or simulat...
-- (C) 1992-2014 Altera Corporation. All rights reserved. -- 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 any of the foregoing (including device programming or simulat...
-- (C) 1992-2014 Altera Corporation. All rights reserved. -- 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 any of the foregoing (including device programming or simulat...
-- (C) 1992-2014 Altera Corporation. All rights reserved. -- 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 any of the foregoing (including device programming or simulat...
-- (C) 1992-2014 Altera Corporation. All rights reserved. -- 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 any of the foregoing (including device programming or simulat...
-- (C) 1992-2014 Altera Corporation. All rights reserved. -- 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 any of the foregoing (including device programming or simulat...
-------------------------------------------------------------------------------- -- -- BLK MEM GEN v7.1 Core - Top-level core wrapper -- -------------------------------------------------------------------------------- -- -- (c) Copyright 2006-2010 Xilinx, Inc. All rights reserved. -- -- This file contains c...
library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_arith.all; entity k_ukf_Vsigrefofkofall is port ( clock : in std_logic; Vrefofkplusone : in std_logic_vector(31 downto 0); refsigma : in std_logic_vector(31 downto 0); Vsigrefofkofzero : ou...
-- 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...
-- (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 ...
library ieee; use ieee.std_logic_1164.all; use work.mlite_pack.all; use ieee.std_logic_unsigned.all; use IEEE.numeric_std.all; -- Library UNISIM; -- use UNISIM.vcomponents.all; Library UNIMACRO; use UNIMACRO.vcomponents.all; entity memory is generic(address_width : natural := 16); port(clk : in std_l...
library ieee; use ieee.std_logic_1164.all; use work.mlite_pack.all; use ieee.std_logic_unsigned.all; use IEEE.numeric_std.all; -- Library UNISIM; -- use UNISIM.vcomponents.all; Library UNIMACRO; use UNIMACRO.vcomponents.all; entity memory is generic(address_width : natural := 16); port(clk : in std_l...
library ieee; use ieee.std_logic_1164.all; use work.mlite_pack.all; use ieee.std_logic_unsigned.all; use IEEE.numeric_std.all; -- Library UNISIM; -- use UNISIM.vcomponents.all; Library UNIMACRO; use UNIMACRO.vcomponents.all; entity memory is generic(address_width : natural := 16); port(clk : in std_l...
library verilog; use verilog.vl_types.all; entity nfa_accept_samples_generic_hw_top is generic( C_nfa_initials_buckets_REMOTE_DESTINATION_ADDRESS: integer := 0; C_nfa_initials_buckets_AWIDTH: integer := 32; C_nfa_initials_buckets_DWIDTH: integer := 64; C_nfa_initials_buckets_NATIVE_D...
------------------------------------------------------------------------------ -- 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...
-- 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...
library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.NUMERIC_STD.ALL; package internoc_pack is --constants constant INVALID_INTERFACE : std_logic_vector(2 downto 0) := (others=>'1'); constant UART_INTERFACE : std_logic_vector(2 downto 0) := "001"; constant SPI_INTERFACE : std_logic_vector(2 downto 0) := "010"; ...
library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.NUMERIC_STD.ALL; package internoc_pack is --constants constant INVALID_INTERFACE : std_logic_vector(2 downto 0) := (others=>'1'); constant UART_INTERFACE : std_logic_vector(2 downto 0) := "001"; constant SPI_INTERFACE : std_logic_vector(2 downto 0) := "010"; ...