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

Subversion Repositories tcp_ip_core_w_dhcp

[/] [tcp_ip_core_w_dhcp/] [trunk/] [ipcore_dir/] [TCP_FIFO.vho] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 craighaywo
--------------------------------------------------------------------------------
2
--    This file is owned and controlled by Xilinx and must be used solely     --
3
--    for design, simulation, implementation and creation of design files     --
4
--    limited to Xilinx devices or technologies. Use with non-Xilinx          --
5
--    devices or technologies is expressly prohibited and immediately         --
6
--    terminates your license.                                                --
7
--                                                                            --
8
--    XILINX IS PROVIDING THIS DESIGN, CODE, OR INFORMATION "AS IS" SOLELY    --
9
--    FOR USE IN DEVELOPING PROGRAMS AND SOLUTIONS FOR XILINX DEVICES.  BY    --
10
--    PROVIDING THIS DESIGN, CODE, OR INFORMATION AS ONE POSSIBLE             --
11
--    IMPLEMENTATION OF THIS FEATURE, APPLICATION OR STANDARD, XILINX IS      --
12
--    MAKING NO REPRESENTATION THAT THIS IMPLEMENTATION IS FREE FROM ANY      --
13
--    CLAIMS OF INFRINGEMENT, AND YOU ARE RESPONSIBLE FOR OBTAINING ANY       --
14
--    RIGHTS YOU MAY REQUIRE FOR YOUR IMPLEMENTATION.  XILINX EXPRESSLY       --
15
--    DISCLAIMS ANY WARRANTY WHATSOEVER WITH RESPECT TO THE ADEQUACY OF THE   --
16
--    IMPLEMENTATION, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OR          --
17
--    REPRESENTATIONS THAT THIS IMPLEMENTATION IS FREE FROM CLAIMS OF         --
18
--    INFRINGEMENT, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A   --
19
--    PARTICULAR PURPOSE.                                                     --
20
--                                                                            --
21
--    Xilinx products are not intended for use in life support appliances,    --
22
--    devices, or systems.  Use in such applications are expressly            --
23
--    prohibited.                                                             --
24
--                                                                            --
25
--    (c) Copyright 1995-2015 Xilinx, Inc.                                    --
26
--    All rights reserved.                                                    --
27
--------------------------------------------------------------------------------
28
 
29
--------------------------------------------------------------------------------
30
--    Generated from core with identifier: xilinx.com:ip:fifo_generator:9.2   --
31
--                                                                            --
32
--    The FIFO Generator is a parameterizable first-in/first-out memory       --
33
--    queue generator. Use it to generate resource and performance            --
34
--    optimized FIFOs with common or independent read/write clock domains,    --
35
--    and optional fixed or programmable full and empty flags and             --
36
--    handshaking signals.  Choose from a selection of memory resource        --
37
--    types for implementation.  Optional Hamming code based error            --
38
--    detection and correction as well as error injection capability for      --
39
--    system test help to insure data integrity.  FIFO width and depth are    --
40
--    parameterizable, and for native interface FIFOs, asymmetric read and    --
41
--    write port widths are also supported.                                   --
42
--------------------------------------------------------------------------------
43
 
44
-- Interfaces:
45
--    AXI4Stream_MASTER_M_AXIS
46
--    AXI4Stream_SLAVE_S_AXIS
47
--    AXI4_MASTER_M_AXI
48
--    AXI4_SLAVE_S_AXI
49
--    AXI4Lite_MASTER_M_AXI
50
--    AXI4Lite_SLAVE_S_AXI
51
 
52
-- The following code must appear in the VHDL architecture header:
53
 
54
------------- Begin Cut here for COMPONENT Declaration ------ COMP_TAG
55
COMPONENT TCP_FIFO
56
  PORT (
57
    clk : IN STD_LOGIC;
58
    din : IN STD_LOGIC_VECTOR(7 DOWNTO 0);
59
    wr_en : IN STD_LOGIC;
60
    rd_en : IN STD_LOGIC;
61
    dout : OUT STD_LOGIC_VECTOR(7 DOWNTO 0);
62
    full : OUT STD_LOGIC;
63
    almost_full : OUT STD_LOGIC;
64
    empty : OUT STD_LOGIC;
65
    data_count : OUT STD_LOGIC_VECTOR(11 DOWNTO 0)
66
  );
67
END COMPONENT;
68
-- COMP_TAG_END ------ End COMPONENT Declaration ------------
69
 
70
-- The following code must appear in the VHDL architecture
71
-- body. Substitute your own instance name and net names.
72
 
73
------------- Begin Cut here for INSTANTIATION Template ----- INST_TAG
74
your_instance_name : TCP_FIFO
75
  PORT MAP (
76
    clk => clk,
77
    din => din,
78
    wr_en => wr_en,
79
    rd_en => rd_en,
80
    dout => dout,
81
    full => full,
82
    almost_full => almost_full,
83
    empty => empty,
84
    data_count => data_count
85
  );
86
-- INST_TAG_END ------ End INSTANTIATION Template ------------
87
 
88
-- You must compile the wrapper file TCP_FIFO.vhd when simulating
89
-- the core, TCP_FIFO. When compiling the wrapper file, be sure to
90
-- reference the XilinxCoreLib VHDL simulation library. For detailed
91
-- instructions, please refer to the "CORE Generator Help".
92
 

powered by: WebSVN 2.1.0

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