content
stringlengths
1
1.04M
---------------------------------------------------------------------------------- -- Company:LAAS-CNRS -- Author:Jonathan Piat <piat.jonathan@gmail.com> -- -- Create Date: 15:37:36 06/18/2012 -- Design Name: -- Module Name: dp_fifo - Behavioral -- Project Name: -- Target Devices: Spartan 6 -- Tool versio...
---------------------------------------------------------------------------------- -- Company:LAAS-CNRS -- Author:Jonathan Piat <piat.jonathan@gmail.com> -- -- Create Date: 15:37:36 06/18/2012 -- Design Name: -- Module Name: dp_fifo - Behavioral -- Project Name: -- Target Devices: Spartan 6 -- Tool versio...
-------------------------------------------------------------------- -- Entity: MultiIO_APB -- File: MultiIO_APB.vhd -- Author: Thomas Ameseder, Gleichmann Electronics -- Based on an orginal version by Manfred.Helzle@embedd.it -- -- Description: APB Multiple digital I/O for min...
-------------------------------------------------------------------- -- Entity: MultiIO_APB -- File: MultiIO_APB.vhd -- Author: Thomas Ameseder, Gleichmann Electronics -- Based on an orginal version by Manfred.Helzle@embedd.it -- -- Description: APB Multiple digital I/O for min...
entity tb_repro_rng1 is end tb_repro_rng1; library ieee; use ieee.std_logic_1164.all; architecture behav of tb_repro_rng1 is signal clk : std_logic; signal a : natural range 0 to 7; signal b : natural range 0 to 7; begin dut: entity work.repro_rng1 port map ( clk => clk, a => a, b => b); process ...
-------------------------------------------------------------------------------- -- -- FIFO Generator Core Demo Testbench -- -------------------------------------------------------------------------------- -- -- (c) Copyright 2009 - 2010 Xilinx, Inc. All rights reserved. -- -- This file contains confidential ...
library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; entity U232CRecv is generic ( wTime : std_logic_vector(15 downto 0) := x"1B17"); port ( clk : in std_logic; ok : in std_logic; rx_pin : in std_logic; data : out std_logic_vector (7 downto 0); ...
-- libraries --------------------------------------------------------------------------------- {{{ library IEEE; use IEEE.STD_LOGIC_1164.all; use IEEE.NUMERIC_STD.ALL; use ieee.std_logic_textio.all; use std.textio.all; -----------------------------------------------------------------------------------------------...
-------------------------------------------------------------------------------- -- -- FIFO Generator Core Demo Testbench -- -------------------------------------------------------------------------------- -- -- (c) Copyright 2009 - 2010 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and prop...
--***************************************************************************** -- (c) Copyright 2009 - 2010 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 -...
-- This file is not intended for synthesis. The entity described in this file -- is not directly instantiatable from HDL because its port list changes in a -- way which is too complex to describe in VHDL or Verilog. Please use a tool -- such as SOPC builder, DSP builder or the Megawizard plug-in manager to -- instant...
-- This file is not intended for synthesis. The entity described in this file -- is not directly instantiatable from HDL because its port list changes in a -- way which is too complex to describe in VHDL or Verilog. Please use a tool -- such as SOPC builder, DSP builder or the Megawizard plug-in manager to -- instant...
library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; library work; use work.pkg_6502_defs.all; use work.tl_flat_memory_model_pkg.all; use work.pkg_6502_decode.all; entity tb_proc_core is generic ( test_file : string := "opcode_test"; test_base : integer := 16#02FE# ); end tb_proc_...
---------------------------------------------------------------------------------- -- Engineer: drxzclx@gmail.com -- -- Create Date: 21:43:14 02/02/2015 -- Design Name: SPI driver for WS2801 led strings -- Module Name: spiout - Behavioral -- Project Name: Neppielight -- Additional Comments: -- ----------...
---------------------------------------------------------------------------------- -- Engineer: drxzclx@gmail.com -- -- Create Date: 21:43:14 02/02/2015 -- Design Name: SPI driver for WS2801 led strings -- Module Name: spiout - Behavioral -- Project Name: Neppielight -- Additional Comments: -- ----------...
library IEEE; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; use work.types.all; use work.interfaces.all; entity load_logic is port( clk : in std_logic; reset : in std_logic; input : in load_logic_in_if; output : out load_logic_out_if); end entity; architecture rtl of l...
-- EMACS settings: -*- tab-width: 2; indent-tabs-mode: t -*- -- vim: tabstop=2:shiftwidth=2:noexpandtab -- kate: tab-width 2; replace-tabs off; indent-width 2; -- -- ============================================================================= -- Authors: Patrick Lehmann -- Steffen Koehler -- -- Module: ...
-- EMACS settings: -*- tab-width: 2; indent-tabs-mode: t -*- -- vim: tabstop=2:shiftwidth=2:noexpandtab -- kate: tab-width 2; replace-tabs off; indent-width 2; -- -- ============================================================================= -- Authors: Patrick Lehmann -- Steffen Koehler -- -- Module: ...
architecture rtl of fifo is constant c_zeros : std_logic_vector(7 downto 0) := (others => '0'); constant c_one : std_logic_vector(7 downto 0) := (0 => '1', (others => '0')); constant c_two : std_logic_vector(7 downto 0) := (1 => '1', (others => '0')); constant c_stimulus : t_stimulus_array := ((name => "...
--!----------------------------------------------------------------------------- --! -- --! Weizmann Institute of Science -- --! Electronics & Data Acquisition Group ...
LIBRARY ieee; USE ieee.std_logic_1164.all; ENTITY mult IS GENERIC(N:POSITIVE := 8); PORT( a,b : IN std_logic_vector(N-1 DOWNTO 0); S : OUT std_logic_vector((2*N)-1 DOWNTO 0) ); END mult; ARCHITECTURE behavior OF mult IS TYPE mem_ET IS array(0 TO N-1) OF std_logic_vector(N-1 DOWNTO 0); TYPE mem_S IS ...
library ieee; use ieee.std_logic_1164.all; entity arr01 is port ( a : std_logic_vector (31 downto 0); sel : natural range 0 to 3; clk : std_logic; res : out std_logic_vector (7 downto 0)); end arr01; architecture behav of arr01 is type t_mem is array (0 to 3) of std_logic_vector (7 downto 0); ty...
-- The Potato Processor - A simple processor for FPGAs -- (c) Kristian Klomsten Skordal 2014 - 2016 <kristian.skordal@wafflemail.net> -- Report bugs and issues on <https://github.com/skordal/potato/issues> library ieee; use ieee.std_logic_1164.all; entity tb_soc_timer is end entity tb_soc_timer; architecture behavio...
library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; use work.usb_pkg.all; entity usb_host_interface is generic ( g_simulation : boolean := false ); port ( clock : in std_logic; reset : in std_logic; usb_rx : out t_usb_rx; usb_tx_req : in t...
-- ------------------------------------------------------------- -- -- File Name: hdlsrc/ifft_16_bit/TWDLROM_3_15.vhd -- Created: 2017-03-28 01:00:37 -- -- Generated by MATLAB 9.1 and HDL Coder 3.9 -- -- ------------------------------------------------------------- -- ----------------------------------------------...
-- megafunction wizard: %FIFO% -- GENERATION: STANDARD -- VERSION: WM1.0 -- MODULE: dcfifo_mixed_widths -- ============================================================ -- File Name: rgmi2gmii_fifo.vhd -- Megafunction Name(s): -- dcfifo_mixed_widths -- -- Simulation Library Files(s): -- altera_mf -- ============...
-- 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...
------------------------------------------------------------------------------- -- File Name : HostIF.vhd -- -- Project : JPEG_ENC -- -- Module : HostIF -- -- Content : Host Interface (Xilinx OPB v2.1) -- -- Description : -- -- Spec. : -- -- Author : Michal Krepa -- ---------------------------------------...
------------------------------------------------------------------------------- -- File Name : HostIF.vhd -- -- Project : JPEG_ENC -- -- Module : HostIF -- -- Content : Host Interface (Xilinx OPB v2.1) -- -- Description : -- -- Spec. : -- -- Author : Michal Krepa -- ---------------------------------------...
-- 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: pdp11_dmscnt.vhd 1181 2019-07-08 17:00:50Z mueller $ -- SPDX-License-Identifier: GPL-3.0-or-later -- Copyright 2015-2019 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de> -- ------------------------------------------------------------------------------ -- Module Name: pdp11_dmscnt - syn -- Description: pdp11:...
`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...
-------------------------------------------------------------------------------- -- -- FIFO Generator Core Demo Testbench -- -------------------------------------------------------------------------------- -- -- (c) Copyright 2009 - 2010 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and prop...
-------------------------------------------------------------------------------- -- -- FIFO Generator Core Demo Testbench -- -------------------------------------------------------------------------------- -- -- (c) Copyright 2009 - 2010 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and prop...
library verilog; use verilog.vl_types.all; entity BFM_AHBSLAVEEXT is generic( AWIDTH : integer := 10; DEPTH : integer := 256; EXT_SIZE : integer := 2; INITFILE : string := " "; ID : integer := 0; ENFUNC : integer...
library verilog; use verilog.vl_types.all; entity BFM_AHBSLAVEEXT is generic( AWIDTH : integer := 10; DEPTH : integer := 256; EXT_SIZE : integer := 2; INITFILE : string := " "; ID : integer := 0; ENFUNC : integer...
-- File: gray_inc_reg.vhd -- Generated by MyHDL 1.0dev -- Date: Thu Jun 23 19:06:43 2016 library IEEE; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; use std.textio.all; use work.pck_myhdl_10.all; entity gray_inc_reg is port ( graycnt: out unsigned(7 downto 0); enable: in std_logic; ...
-- File: gray_inc_reg.vhd -- Generated by MyHDL 1.0dev -- Date: Thu Jun 23 19:06:43 2016 library IEEE; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; use std.textio.all; use work.pck_myhdl_10.all; entity gray_inc_reg is port ( graycnt: out unsigned(7 downto 0); enable: in std_logic; ...
-- File: gray_inc_reg.vhd -- Generated by MyHDL 1.0dev -- Date: Thu Jun 23 19:06:43 2016 library IEEE; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; use std.textio.all; use work.pck_myhdl_10.all; entity gray_inc_reg is port ( graycnt: out unsigned(7 downto 0); enable: in std_logic; ...
-- File: gray_inc_reg.vhd -- Generated by MyHDL 1.0dev -- Date: Thu Jun 23 19:06:43 2016 library IEEE; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; use std.textio.all; use work.pck_myhdl_10.all; entity gray_inc_reg is port ( graycnt: out unsigned(7 downto 0); enable: in std_logic; ...
-- File: gray_inc_reg.vhd -- Generated by MyHDL 1.0dev -- Date: Thu Jun 23 19:06:43 2016 library IEEE; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; use std.textio.all; use work.pck_myhdl_10.all; entity gray_inc_reg is port ( graycnt: out unsigned(7 downto 0); enable: in std_logic; ...
-- File: gray_inc_reg.vhd -- Generated by MyHDL 1.0dev -- Date: Thu Jun 23 19:06:43 2016 library IEEE; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; use std.textio.all; use work.pck_myhdl_10.all; entity gray_inc_reg is port ( graycnt: out unsigned(7 downto 0); enable: in std_logic; ...
-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -- cMIPS, a VHDL model of the classical five stage MIPS pipeline. -- Copyright (C) 2013 Roberto Andre Hexsel -- -- This program is free software: you can redistribute it and/or modify -- it under the terms of the GNU General Public License...
-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -- cMIPS, a VHDL model of the classical five stage MIPS pipeline. -- Copyright (C) 2013 Roberto Andre Hexsel -- -- This program is free software: you can redistribute it and/or modify -- it under the terms of the GNU General Public License...
-------------------------------------------------------------------------------- -- This file is owned and controlled by Xilinx and must be used solely -- -- for design, simulation, implementation and creation of design files -- -- limited to Xilinx devices or technologies. Use with non-Xilinx ...
-------------------------------------------------------------------------------- -- This file is owned and controlled by Xilinx and must be used solely -- -- for design, simulation, implementation and creation of design files -- -- limited to Xilinx devices or technologies. Use with non-Xilinx ...
-------------------------------------------------------------------------------- -- This file is owned and controlled by Xilinx and must be used solely -- -- for design, simulation, implementation and creation of design files -- -- limited to Xilinx devices or technologies. Use with non-Xilinx ...
-------------------------------------------------------------------------------- -- This file is owned and controlled by Xilinx and must be used solely -- -- for design, simulation, implementation and creation of design files -- -- limited to Xilinx devices or technologies. Use with non-Xilinx ...
------------------------------------------------------------------------------ -- LEON3 Demonstration design -- Copyright (C) 2006 Jiri Gaisler, Gaisler Research ------------------------------------------------------------------------------ -- This file is a part of the GRLIB VHDL IP LIBRARY -- Copyright (C) 2003 -...
------------------------------------------------------------------ -- _____ -- / \ -- /____ \____ -- / \===\ \==/ -- /___\===\___\/ AVNET -- \======/ -- \====/ ----------------------------------------------------------------- -- -- This design is the property of Avnet....
-- IT Tijuana, NetList-FPGA-Optimizer 0.01 (printed on 2016-05-16.08:47:50) LIBRARY IEEE; USE IEEE.STD_LOGIC_1164.all; USE IEEE.NUMERIC_STD.all; ENTITY ewf_random_entity IS PORT ( reset, clk: IN std_logic; input1, input2: IN unsigned(0 TO 3); output1, output2, output3, output4, output5: OUT unsigned(0 TO 4)); ...
LIBRARY ieee; USE ieee.std_logic_1164.ALL; ENTITY tb_alu IS END tb_alu; ARCHITECTURE tb OF tb_alu IS constant data_width : integer := 8; constant sel_width : integer := 4; COMPONENT alu PORT ( A : IN std_logic_vector (data_width - 1 DOWNTO 0); B : IN std_logic_vector (data_width - 1 DOWNTO 0); ...
`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...
`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...
`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...
`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...
------------------------------------------------------------------------------ -- Context multiplexer (behavioral) -- -- Project : -- File : $URL: svn+ssh://plessl@yosemite.ethz.ch/home/plessl/SVN/simzippy/trunk/vhdl/contextmux.vhd $ -- Authors : Rolf Enzler <enzler@ife.ee.ethz.ch> -- Chr...
---------------------------------------------------------------------------- --! @file --! @copyright Copyright 2015 GNSS Sensor Ltd. All right reserved. --! @author Sergey Khabarov --! @brief Virtual simple input buffer. ------------------------------------------------------------------------------ library ...
---------------------------------------------------------------------------- --! @file --! @copyright Copyright 2015 GNSS Sensor Ltd. All right reserved. --! @author Sergey Khabarov --! @brief Virtual simple input buffer. ------------------------------------------------------------------------------ library ...
architecture ARCH of ENTITY is begin -- Component instantiation without component keyword. U_INST1 : INST1 generic map ( GEN_1 => c_gen_1, GEN_2 => c_gen_2, GEN_3 => c_gen_3 ) port map ( PORT_1 => w_port_1, PORT_2 => w_port_2, PORT_3 => w_port_3 ); U_INST1 ...
-- ************************************************************************* -- -- (c) Copyright 2010-2011 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected unde...
-- ************************************************************************* -- -- (c) Copyright 2010-2011 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected unde...
-- ************************************************************************* -- -- (c) Copyright 2010-2011 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected unde...
-- ************************************************************************* -- -- (c) Copyright 2010-2011 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected unde...
-- ************************************************************************* -- -- (c) Copyright 2010-2011 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected unde...
-- ************************************************************************* -- -- (c) Copyright 2010-2011 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected unde...
-- ************************************************************************* -- -- (c) Copyright 2010-2011 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected unde...
package body fifo is end package body fifo; package body fifo is end; package body fifo is end package body;
------------------------------------------------------------------------------------------------------------------------ -- OpenMAC DMA FIFO -- -- Copyright (C) 2011 B&R -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following condition...
library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; use ieee.std_logic_arith.all; entity memtable is port ( clk : in std_logic; rst : in std_logic; instaddr: in std_logic_vector(31 downto 0); instout : out std_logic_vector(31 downto 0); wen : in std_logic; addr : in ...
-- ------------------------------------------------------------- -- -- Generated Architecture Declaration for rtl of ioblock1_e -- -- Generated -- by: wig -- on: Wed Jul 5 07:04:19 2006 -- cmd: /cygdrive/h/work/eclipse/MIX/mix_0.pl ../padio.xls -- -- !!! Do not edit this file! Autogenerated by MIX !!! -- $Author:...
architecture Struct of TbdFIR is component Audio is port ( reset_reset_n : in std_logic := 'X'; -- reset_n clk_clk : in std_logic := 'X'; -- clk audio_clk_clk : out std_logic; -- clk i2s_adcdat : in std_logic := 'X'; -- adcdat i2s_adclrck : in std...
library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.NUMERIC_STD.ALL; entity node_port is generic (WIDTH: integer := 8); port ( I_clk : in STD_LOGIC; I_reset : in STD_LOGIC; I_writeEnable: in STD_LOGIC; I_readEnable: in STD_LOGIC; I_dataIn : in STD_LOGIC_VECTOR (WIDTH...
------------------------------------------------------------------------------ ---- ---- ---- gmzpu interrupt line component testbench ---- ---- ---- ----...
------------------------------------------------------------------------------------------------------------------------ -- OpenHUB -- -- Copyright (C) 2009 B&R -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions -- a...
------------------------------------------------------------------------------------------------------------------------ -- OpenHUB -- -- Copyright (C) 2009 B&R -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions -- a...
------------------------------------------------------------------------------------------------------------------------ -- OpenHUB -- -- Copyright (C) 2009 B&R -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions -- a...
-- Copyright (C) 1996 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) 1996 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) 1996 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...
-- ************************************************************************** -- ComFlowFifo -- ************************************************************************** -- -- 16/10/2014 - creation -------------------------------------------------------------------- library ieee; use ieee.std_logic_1164.all; ...
------------------------------ library ieee; use ieee.std_logic_1164.all; ------------------------------ entity circuit is --generic declarations port ( x: in std_logic_vector(1 downto 0) ; y: out std_logic_vector(1 downto 0) ); end entity; ------------------------------ architecture circuit of circ...
-- (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 ...
-- NEED RESULT: ARCH00265: An architecture body need not contain concurrent statements passed -- -- TEST NAME: -- -- CT00265 -- -- AUTHOR: -- -- A. Wilmot -- -- TEST OBJECTIVES: -- -- 1.2.2 (2) -- -- DESIGN UNIT ORDERING: -- -- E00000(ARCH00265) -- ENT00265_Test_Bench(ARCH00...
-- 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...