content
stringlengths
1
1.04M
---------------------------------------------------------------------------------- -- -- full_tb.vhd -- -- (c) 2015 -- L. Schrittwieser -- N. Huesser -- ---------------------------------------------------------------------------------- -- -- A testbench to test the logger core with real inputs. -- --------------------...
------------------------------------------------------------------------------- -- CPU86 - VHDL CPU8088 IP core -- -- Copyright (C) 2002-2008 HT-LAB -- -- ...
------------------------------------------------------------------------------- -- CPU86 - VHDL CPU8088 IP core -- -- Copyright (C) 2002-2008 HT-LAB -- -- ...
------------------------------------------------------------------------------- -- CPU86 - VHDL CPU8088 IP core -- -- Copyright (C) 2002-2008 HT-LAB -- -- ...
-- 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 07:03:52 2017 -- Host : GILAMONSTER running 64-bit major rel...
---------------------------------------------------------------------------------- -- ESQUEMA LEDS 8 SEGMENTOS: -- -- A -- --- -- F | | B -- -G- -- E | | C -- --- . DP -- D ---------------------------------------------------------------------------------- library IEEE; us...
---------------------------------------------------------------------------------- -- ESQUEMA LEDS 8 SEGMENTOS: -- -- A -- --- -- F | | B -- -G- -- E | | C -- --- . DP -- D ---------------------------------------------------------------------------------- library IEEE; us...
---------------------------------------------------------------------------------- -- ESQUEMA LEDS 8 SEGMENTOS: -- -- A -- --- -- F | | B -- -G- -- E | | C -- --- . DP -- D ---------------------------------------------------------------------------------- library IEEE; us...
---------------------------------------------------------------------------------- -- ESQUEMA LEDS 8 SEGMENTOS: -- -- A -- --- -- F | | B -- -G- -- E | | C -- --- . DP -- D ---------------------------------------------------------------------------------- library IEEE; us...
---------------------------------------------------------------------------------- -- ESQUEMA LEDS 8 SEGMENTOS: -- -- A -- --- -- F | | B -- -G- -- E | | C -- --- . DP -- D ---------------------------------------------------------------------------------- library IEEE; us...
entity tb_dff06 is end tb_dff06; library ieee; use ieee.std_logic_1164.all; architecture behav of tb_dff06 is signal clk : std_logic; signal en1 : std_logic; signal en2 : std_logic; signal din : std_logic; signal dout : std_logic; begin dut: entity work.dff06 port map ( q => dout, d => din...
library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; -- -- This module connects all other modules -- for testing. -- entity disp is port( clk: in std_logic; bcd: in std_logic_vector(3 downto 0); en: out std_logic_vector(3 downto 0); sseg: out std_logic_vector...
---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Design Name: -- Module Name: tx_Transact - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Description: -- -- Dependencies: -- -- Revision 1.30 - Memory buffer applied and structure r...
-- ------------------------------------------------------------- -- -- File Name: hdlsrc/ifft_16_bit/RADIX22FFT_SDNF1_3_block.vhd -- Created: 2017-03-28 01:00:37 -- -- Generated by MATLAB 9.1 and HDL Coder 3.9 -- -- ------------------------------------------------------------- -- ----------------------------------...
entity tb_repro3_1 is end tb_repro3_1; library ieee; use ieee.std_logic_1164.all; architecture behav of tb_repro3_1 is signal clk : std_logic; signal led : std_logic_vector(7 downto 0); begin dut: entity work.repro3_1 port map (clk, led); process procedure pulse is begin clk <= '0'; w...
library ieee; library work; use ieee.std_logic_1164.all; use ieee.numeric_std.all; use work.utils_pkg.all; entity temp_controller is generic ( CONV_D : natural; CONV_CMD_D : natural; OW_US_D : positive; PWM_N : positive; PW...
----------------------------------------------- -- Module Name: HexDigSSegCntrl - control -- ----------------------------------------------- library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; use work.Hex4Digs_2_SSeg_Package.all; entity HexDigSSegCntrl is port ( clock : in std_logic;...
-- ------------------------------------------------------------- -- -- Generated Architecture Declaration for rtl of inst_b_e -- -- Generated -- by: wig -- on: Wed Jul 19 05:44:57 2006 -- cmd: /cygdrive/h/work/eclipse/MIX/mix_0.pl ../../udc.xls -- -- !!! Do not edit this file! Autogenerated by MIX !!! -- $Author: ...
`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...
package fifo_pkg is signal sig1 : std_logic; end package; package fifo_pkg is signal sig1 : std_logic; end package;
-- 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...
-- -- my_fpga_test.vhdl -- library ieee; use ieee.std_logic_1164.all; use work.tbmsgs.all; entity my_fpga_test is end entity; architecture sim of my_fpga_test is signal in1 : std_logic := '0'; signal in2 : std_logic := '0'; signal out1 : std_logic; signal out2 : std_logic; begin uut : entity w...
-- -- my_fpga_test.vhdl -- library ieee; use ieee.std_logic_1164.all; use work.tbmsgs.all; entity my_fpga_test is end entity; architecture sim of my_fpga_test is signal in1 : std_logic := '0'; signal in2 : std_logic := '0'; signal out1 : std_logic; signal out2 : std_logic; begin uut : entity w...
-- 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 : Thu May 25 15:29:01 2017 -- Host : GILAMONSTER running 64-bit major rel...
-- ------------------------------------------------------------- -- -- File Name: hdlsrc/fft_16_bit/Complex3Multiply_block6.vhd -- Created: 2017-03-27 23:13:58 -- -- Generated by MATLAB 9.1 and HDL Coder 3.9 -- -- ------------------------------------------------------------- -- ------------------------------------...
library IEEE; use IEEE.std_logic_1164.all; use IEEE.std_logic_unsigned.all; use IEEE.numeric_std.ALL; entity dp_sram is port ( -- CLOCK CLK : in std_logic; -- 32MHz nRESET : in std_logic; -- PORT A DI_A : in STD_LOGIC_VECTOR(7 downto 0); DO_A : inout STD_LOGIC_VECTOR...
LIBRARY ieee; USE ieee.std_logic_1164.ALL; ENTITY RF_tb IS END RF_tb; ARCHITECTURE behavior OF RF_tb IS -- Component Declaration for the Unit Under Test (UUT) COMPONENT RF PORT( rs1 : IN std_logic_vector(5 downto 0); rs2 : IN std_logic_vector(5 downto 0); ...
entity tb_dff13 is end tb_dff13; library ieee; use ieee.std_logic_1164.all; architecture behav of tb_dff13 is signal clk : std_logic; signal din : std_logic; signal dout : std_logic; begin dut: entity work.dff13 port map ( q => dout, d => din, clk => clk); process procedure pulse ...
library ieee; use ieee.std_logic_1164.all; entity Signature is generic (n:integer := 4); port( CLK: in std_logic; RST: in std_logic; Pin: in std_logic; Pout: out std_logic_vector(0 to 2**n-1) ); end Signature; architecture behavior of Signature is signal sreg: std_logic_vector(0 to 2**n-1); signal sdat:...
------------------------------------------------------------------------------- --! @project Unrolled (6) hardware implementation of Asconv1286 --! @author Michael Fivez --! @license This project is released under the GNU Public License. --! The license and distribution terms for this file may...
library IEEE; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; entity Rhody_CPU_pipelinev112 is port ( clk : in std_logic; rst : in std_logic; MEM_ADR : out std_logic_vector(31 downto 0); MEM_IN : in std_logic_vector(31 downto 0); MEM_OUT : out std_logic_vector(31 downto 0); me...
library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; use work.aua_types.all; entity sc_test_slave is port ( clk : in std_logic; reset : in std_logic; -- SimpCon slave interface to IO ctrl address : in sc_addr_t; wr_data : in sc_data_t; rd : in std_logic; wr : in std_logic; rd_d...
library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; entity faultify_top is generic ( numInj : integer := 56; numIn : integer := 10; numOut : integer := 10); port ( aclk : in std_logic; -- interface clock arst_n : in std_logic; -- interface reset ...
library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; entity faultify_top is generic ( numInj : integer := 56; numIn : integer := 10; numOut : integer := 10); port ( aclk : in std_logic; -- interface clock arst_n : in std_logic; -- interface reset ...
-- megafunction wizard: %ROM: 1-PORT% -- GENERATION: STANDARD -- VERSION: WM1.0 -- MODULE: altsyncram -- ============================================================ -- File Name: IMG3.vhd -- Megafunction Name(s): -- altsyncram -- -- Simulation Library Files(s): -- altera_mf -- =================================...
architecture RTl of FIFO is component fifo is generic ( gen_dec1 : integer := 0; -- Comment gen_dec2 : integer := 1; -- Comment gen_dec3 : integer := 2 -- Comment ); port ( sig1 : std_logic; -- Comment sig2 : std_logic; -- Comment sig3 : std_logic ...
-- Copyright (c) University of Florida -- -- This file is part of window_gen. -- -- window_gen 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 3 of the License, or -- (at your opt...
-- Copyright (c) University of Florida -- -- This file is part of window_gen. -- -- window_gen 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 3 of the License, or -- (at your opt...
-------------------------------------------------------------------------------- -- -- FIFO Generator Core Demo Testbench -- -------------------------------------------------------------------------------- -- -- (c) Copyright 2009 - 2010 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and pro...
-- ============================================================== -- File generated by Vivado(TM) HLS - High-Level Synthesis from C, C++ and SystemC -- Version: 2018.2 -- Copyright (C) 1986-2018 Xilinx, Inc. All Rights Reserved. -- -- ============================================================== library IEEE;...
-- ============================================================== -- File generated by Vivado(TM) HLS - High-Level Synthesis from C, C++ and SystemC -- Version: 2018.2 -- Copyright (C) 1986-2018 Xilinx, Inc. All Rights Reserved. -- -- ============================================================== library IEEE;...
-- ============================================================== -- File generated by Vivado(TM) HLS - High-Level Synthesis from C, C++ and SystemC -- Version: 2018.2 -- Copyright (C) 1986-2018 Xilinx, Inc. All Rights Reserved. -- -- ============================================================== library IEEE;...
-- -- VoiceRom.vhd -- library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; use WORK.VM2413.ALL; entity VoiceRom is port ( clk : in std_logic; addr : in VOICE_ID_TYPE; data : out VOICE_TYPE ); end VoiceRom; architecture RTL of VoiceRom is type VOICE_...
-- -- VoiceRom.vhd -- library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; use WORK.VM2413.ALL; entity VoiceRom is port ( clk : in std_logic; addr : in VOICE_ID_TYPE; data : out VOICE_TYPE ); end VoiceRom; architecture RTL of VoiceRom is type VOICE_...
-- NEED RESULT: ARCH00098.P1: Multi transport transactions occurred on signal asg with indexed name prefixed by an indexed name on LHS passed -- NEED RESULT: ARCH00098.P2: Multi transport transactions occurred on signal asg with indexed name prefixed by an indexed name on LHS passed -- NEED RESULT: ARCH00098.P3: Mult...
------------------------------------------------------------------------------ -- 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...
-- ------------------------------------------------------------- -- -- File Name: hdlsrc/ifft_16_bit/RADIX22FFT_SDNF1_1_block5.vhd -- Created: 2017-03-28 01:00:37 -- -- Generated by MATLAB 9.1 and HDL Coder 3.9 -- -- ------------------------------------------------------------- -- ---------------------------------...
---------------------------------------------------------------------------------- --! Company: EDAQ WIS. --! Engineer: juna --! --! Create Date: 08/12/2014 --! Module Name: reg8to16bit --! Project Name: FELIX ---------------------------------------------------------------------------------- --! Us...
---------------------------------------------------------------------------------- --! Company: EDAQ WIS. --! Engineer: juna --! --! Create Date: 08/12/2014 --! Module Name: reg8to16bit --! Project Name: FELIX ---------------------------------------------------------------------------------- --! Us...
---------------------------------------------------------------------------------- --! Company: EDAQ WIS. --! Engineer: juna --! --! Create Date: 08/12/2014 --! Module Name: reg8to16bit --! Project Name: FELIX ---------------------------------------------------------------------------------- --! Us...
---------------------------------------------------------------------------------- --! Company: EDAQ WIS. --! Engineer: juna --! --! Create Date: 08/12/2014 --! Module Name: reg8to16bit --! Project Name: FELIX ---------------------------------------------------------------------------------- --! Us...
library verilog; use verilog.vl_types.all; entity alt_cal_mm is generic( number_of_channels: integer := 1; channel_address_width: integer := 1; sim_model_mode : string := "TRUE"; lpm_type : string := "alt_cal_mm"; lpm_hint : string := "UNUSED"; idle ...
-------------------------------------------------------------------------------- -- -- FileName: i2c_master.vhd -- Dependencies: none -- Design Software: Quartus II 64-bit Version 13.1 Build 162 SJ Full Version -- -- HDL CODE IS PROVIDED "AS IS." DIGI-KEY EXPRESSLY DISCLAIMS ANY -- WARRAN...
-- ------------------------------------------------------------- -- -- Entity Declaration for inst_eb_e -- -- Generated -- by: wig -- on: Wed Jun 7 17:05:33 2006 -- cmd: /cygdrive/h/work/eclipse/MIX/mix_0.pl -nodelta -bak ../../bitsplice.xls -- -- !!! Do not edit this file! Autogenerated by MIX !!! -- $Author: w...
--! --! Copyright 2018 Sergey Khabarov, sergeykhbr@gmail.com --! --! Licensed under the Apache License, Version 2.0 (the "License"); --! you may not use this file except in compliance with the License. --! You may obtain a copy of the License at --! --! http://www.apache.org/licenses/LICENSE-2.0 --! --! Unless requ...
----------------------------------------------------------------------------- -- LEON3 Demonstration design test bench configuration -- Copyright (C) 2009 Aeroflex Gaisler ------------------------------------------------------------------------------ library techmap; use techmap.gencomp.all; package config is -- ...
------------------------------------------------------------------------------- -- bfm_monitor_wrapper.vhd ------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; library plbv46_monitor_bfm_v1_00_a; use plbv...
------------------------------------------------------------------------------- -- bfm_monitor_wrapper.vhd ------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; library plbv46_monitor_bfm_v1_00_a; use plbv...
-------------------------------------------------------------------------------- -- 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 a part of the GRLIB VHDL IP LIBRARY -- Copyright (C) 2003 - 2008, Gaisler Research -- Copyright (C) 2008 - 2014, Aeroflex Gaisler -- -- This program is free software; you can redistribute it and/or modify -- it under the...
`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...
library ieee; use ieee.std_logic_arith.all; use ieee.std_logic_1164.all; entity mux is port ( clock : in std_logic; a : in std_logic_vector(31 downto 0); b : in std_logic_vector(31 downto 0); Z : in std_logic; prod : out std_logic_vector(31 downto 0)); ...
library verilog; use verilog.vl_types.all; entity Etapa1 is port( HEX0 : out vl_logic_vector(6 downto 0); SW : in vl_logic_vector(4 downto 1) ); end Etapa1;
library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.std_logic_unsigned.all; use ieee.numeric_std.all; library work; use work.xtcpkg.all; use work.wishbonepkg.all; -- synthesis translate_off use work.txt_util.all; -- synthesis translate_on entity icache is generic ( ADDRESS_HIGH: integer := 31 ); port ( ...
-- 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) 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...
library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_ARITH.ALL; use IEEE.STD_LOGIC_SIGNED.ALL; entity CalculateG is generic ( width : integer := 8 ); port ( -- Difference0 : in std_logic_vector( width + 3 downto 0 ); -- Difference01 : in std_logic_vector( width + 3 downto 0 );...
----------------------------------------------------------- --------- AUTOGENERATED FILE, DO NOT EDIT ----------------- ----------------------------------------------------------- library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; use work.desilog.all; entity MySyncAdder is port( addClk_clk, addCl...
library ieee; use ieee.std_logic_1164.all; entity ula_tb is end ula_tb; architecture ula_tb of ula_tb is signal ma, mb, ms: std_logic_vector(63 downto 0); signal mw, mx, my, mz, mcout, mclk, mdo_op, mdone, mst: std_logic; begin vector: entity work.ula port map ( a => ma, b => mb, s => ms, x => mx, y => ...
-- NEED RESULT: ARCH00582: Attribute declarations - scalar static subtypes with dynamic initial values passed ------------------------------------------------------------------------------- -- -- Copyright (c) 1989 by Intermetrics, Inc. -- All rights reserved. -- ----------------------------...
library IEEE; use IEEE.std_logic_1164.ALL; entity static is port( clk_5hz : in std_logic; clk_2hz : in std_logic; clk_1hz : in std_logic; leds : out std_logic_vector(2 downto 0) ); end static; architecture Behavioral of static is begin leds(0) <= clk_1hz; leds(1) ...
----------------- structrual_HA ----------------------- -------------- Library statements ------------------- LIBRARY ieee; USE ieee.std_logic_1164.all; -- Entity declaration half_adder-- entity structural is port (a, b : in std_logic; sum, carry : out std_logic ); end structural; -- architecture structrual ...
-- 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...
--================================================================================================================================ -- Copyright 2020 Bitvis -- Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. -- You may obtain a copy of the ...
-- ZPU -- -- Copyright 2004-2008 oharboe - Øyvind Harboe - oyvind.harboe@zylin.com -- -- The FreeBSD license -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions -- are met: -- -- 1. Redistributions of source code must retain t...
-- ZPU -- -- Copyright 2004-2008 oharboe - Øyvind Harboe - oyvind.harboe@zylin.com -- -- The FreeBSD license -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions -- are met: -- -- 1. Redistributions of source code must retain t...
-- ZPU -- -- Copyright 2004-2008 oharboe - Øyvind Harboe - oyvind.harboe@zylin.com -- -- The FreeBSD license -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions -- are met: -- -- 1. Redistributions of source code must retain t...
-- ZPU -- -- Copyright 2004-2008 oharboe - Øyvind Harboe - oyvind.harboe@zylin.com -- -- The FreeBSD license -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions -- are met: -- -- 1. Redistributions of source code must retain t...
-- ZPU -- -- Copyright 2004-2008 oharboe - Øyvind Harboe - oyvind.harboe@zylin.com -- -- The FreeBSD license -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions -- are met: -- -- 1. Redistributions of source code must retain t...
-- ZPU -- -- Copyright 2004-2008 oharboe - Øyvind Harboe - oyvind.harboe@zylin.com -- -- The FreeBSD license -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions -- are met: -- -- 1. Redistributions of source code must retain t...
-- ZPU -- -- Copyright 2004-2008 oharboe - Øyvind Harboe - oyvind.harboe@zylin.com -- -- The FreeBSD license -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions -- are met: -- -- 1. Redistributions of source code must retain t...
-- ZPU -- -- Copyright 2004-2008 oharboe - Øyvind Harboe - oyvind.harboe@zylin.com -- -- The FreeBSD license -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions -- are met: -- -- 1. Redistributions of source code must retain t...
-- ZPU -- -- Copyright 2004-2008 oharboe - Øyvind Harboe - oyvind.harboe@zylin.com -- -- The FreeBSD license -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions -- are met: -- -- 1. Redistributions of source code must retain t...
-- ZPU -- -- Copyright 2004-2008 oharboe - Øyvind Harboe - oyvind.harboe@zylin.com -- -- The FreeBSD license -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions -- are met: -- -- 1. Redistributions of source code must retain t...
-- ZPU -- -- Copyright 2004-2008 oharboe - Øyvind Harboe - oyvind.harboe@zylin.com -- -- The FreeBSD license -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions -- are met: -- -- 1. Redistributions of source code must retain t...
-- ZPU -- -- Copyright 2004-2008 oharboe - Øyvind Harboe - oyvind.harboe@zylin.com -- -- The FreeBSD license -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions -- are met: -- -- 1. Redistributions of source code must retain t...
-- ZPU -- -- Copyright 2004-2008 oharboe - Øyvind Harboe - oyvind.harboe@zylin.com -- -- The FreeBSD license -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions -- are met: -- -- 1. Redistributions of source code must retain t...
-- ZPU -- -- Copyright 2004-2008 oharboe - Øyvind Harboe - oyvind.harboe@zylin.com -- -- The FreeBSD license -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions -- are met: -- -- 1. Redistributions of source code must retain t...
------------------------------------------------------------------------------- -- Title : Block-level Virtex-6 Embedded Tri-Mode Ethernet MAC Wrapper -- Project : Virtex-6 Embedded Tri-Mode Ethernet MAC Wrapper -- File : v6_emac_v1_4_block.vhd -- Version : 1.4 -----------------------------------------...
-- 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; -- -- ============================================================================= -- Testbench: Simulation constants, functions and utilities. -- -- Aut...