OpenCores
URL https://opencores.org/ocsvn/pcie_sg_dma/pcie_sg_dma/trunk

Subversion Repositories pcie_sg_dma

[/] [pcie_sg_dma/] [branches/] [Virtex6/] [ML605_ISE12.3/] [ipcore_dir_ISE12.1/] [v6_sfifo_15x128.vho] - Blame information for rev 11

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 11 barabba
--------------------------------------------------------------------------------
2
--     This file is owned and controlled by Xilinx and must be used           --
3
--     solely for design, simulation, implementation and creation of          --
4
--     design files limited to Xilinx devices or technologies. Use            --
5
--     with non-Xilinx devices or technologies is expressly prohibited        --
6
--     and immediately terminates your license.                               --
7
--                                                                            --
8
--     XILINX IS PROVIDING THIS DESIGN, CODE, OR INFORMATION "AS IS"          --
9
--     SOLELY FOR USE IN DEVELOPING PROGRAMS AND SOLUTIONS FOR                --
10
--     XILINX DEVICES.  BY PROVIDING THIS DESIGN, CODE, OR INFORMATION        --
11
--     AS ONE POSSIBLE IMPLEMENTATION OF THIS FEATURE, APPLICATION            --
12
--     OR STANDARD, XILINX IS MAKING NO REPRESENTATION THAT THIS              --
13
--     IMPLEMENTATION IS FREE FROM ANY CLAIMS OF INFRINGEMENT,                --
14
--     AND YOU ARE RESPONSIBLE FOR OBTAINING ANY RIGHTS YOU MAY REQUIRE       --
15
--     FOR YOUR IMPLEMENTATION.  XILINX EXPRESSLY DISCLAIMS ANY               --
16
--     WARRANTY WHATSOEVER WITH RESPECT TO THE ADEQUACY OF THE                --
17
--     IMPLEMENTATION, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OR         --
18
--     REPRESENTATIONS THAT THIS IMPLEMENTATION IS FREE FROM CLAIMS OF        --
19
--     INFRINGEMENT, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS        --
20
--     FOR A PARTICULAR PURPOSE.                                              --
21
--                                                                            --
22
--     Xilinx products are not intended for use in life support               --
23
--     appliances, devices, or systems. Use in such applications are          --
24
--     expressly prohibited.                                                  --
25
--                                                                            --
26
--     (c) Copyright 1995-2009 Xilinx, Inc.                                   --
27
--     All rights reserved.                                                   --
28
--------------------------------------------------------------------------------
29
-- The following code must appear in the VHDL architecture header:
30
 
31
------------- Begin Cut here for COMPONENT Declaration ------ COMP_TAG
32
component v6_sfifo_15x128
33
        port (
34
        clk: IN std_logic;
35
        rst: IN std_logic;
36
        din: IN std_logic_VECTOR(127 downto 0);
37
        wr_en: IN std_logic;
38
        rd_en: IN std_logic;
39
        dout: OUT std_logic_VECTOR(127 downto 0);
40
        full: OUT std_logic;
41
        empty: OUT std_logic;
42
        prog_full: OUT std_logic;
43
        prog_empty: OUT std_logic);
44
end component;
45
 
46
-- Synplicity black box declaration
47
attribute syn_black_box : boolean;
48
attribute syn_black_box of v6_sfifo_15x128: component is true;
49
 
50
-- COMP_TAG_END ------ End COMPONENT Declaration ------------
51
 
52
-- The following code must appear in the VHDL architecture
53
-- body. Substitute your own instance name and net names.
54
 
55
------------- Begin Cut here for INSTANTIATION Template ----- INST_TAG
56
your_instance_name : v6_sfifo_15x128
57
                port map (
58
                        clk => clk,
59
                        rst => rst,
60
                        din => din,
61
                        wr_en => wr_en,
62
                        rd_en => rd_en,
63
                        dout => dout,
64
                        full => full,
65
                        empty => empty,
66
                        prog_full => prog_full,
67
                        prog_empty => prog_empty);
68
-- INST_TAG_END ------ End INSTANTIATION Template ------------
69
 
70
-- You must compile the wrapper file v6_sfifo_15x128.vhd when simulating
71
-- the core, v6_sfifo_15x128. When compiling the wrapper file, be sure to
72
-- reference the XilinxCoreLib VHDL simulation library. For detailed
73
-- instructions, please refer to the "CORE Generator Help".
74
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.