File: cordic_rotator.veo

package info (click to toggle)
uhd 3.15.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 202,252 kB
  • sloc: cpp: 182,756; ansic: 94,109; vhdl: 53,420; python: 45,849; xml: 12,956; tcl: 7,046; makefile: 2,248; sh: 1,741; pascal: 230; javascript: 120; csh: 94; asm: 20; perl: 11
file content (78 lines) | stat: -rw-r--r-- 5,009 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*******************************************************************************
*     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           *
*     devices or technologies is expressly prohibited and immediately          *
*     terminates your license.                                                 *
*                                                                              *
*     XILINX IS PROVIDING THIS DESIGN, CODE, OR INFORMATION "AS IS" SOLELY     *
*     FOR USE IN DEVELOPING PROGRAMS AND SOLUTIONS FOR XILINX DEVICES.  BY     *
*     PROVIDING THIS DESIGN, CODE, OR INFORMATION AS ONE POSSIBLE              *
*     IMPLEMENTATION OF THIS FEATURE, APPLICATION OR STANDARD, XILINX IS       *
*     MAKING NO REPRESENTATION THAT THIS IMPLEMENTATION IS FREE FROM ANY       *
*     CLAIMS OF INFRINGEMENT, AND YOU ARE RESPONSIBLE FOR OBTAINING ANY        *
*     RIGHTS YOU MAY REQUIRE FOR YOUR IMPLEMENTATION.  XILINX EXPRESSLY        *
*     DISCLAIMS ANY WARRANTY WHATSOEVER WITH RESPECT TO THE ADEQUACY OF THE    *
*     IMPLEMENTATION, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OR           *
*     REPRESENTATIONS THAT THIS IMPLEMENTATION IS FREE FROM CLAIMS OF          *
*     INFRINGEMENT, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A    *
*     PARTICULAR PURPOSE.                                                      *
*                                                                              *
*     Xilinx products are not intended for use in life support appliances,     *
*     devices, or systems.  Use in such applications are expressly             *
*     prohibited.                                                              *
*                                                                              *
*     (c) Copyright 1995-2014 Xilinx, Inc.                                     *
*     All rights reserved.                                                     *
*******************************************************************************/

/*******************************************************************************
*     Generated from core with identifier: xilinx.com:ip:cordic:5.0            *
*                                                                              *
*     The Xilinx CORDIC LogiCORE is a module for generation of the             *
*     generalized coordinate rotational digital computer (CORDIC) algorithm    *
*     which iteratively solves trigonometric, hyperbolic and square root       *
*     equations. The core is fully synchronous using a single clock and has    *
*     AXI4 Stream compliant interfaces. Options include parameterizable        *
*     data width. The core supports either serial architecture for minimal     *
*     area implementations, or parallel architecture for speed                 *
*     optimization. The core is delivered through the Xilinx CORE Generator    *
*     System and integrates seamlessly with the Xilinx design flow.            *
*******************************************************************************/

// Interfaces:
//    S_AXIS_CARTESIAN
//    aclk_intf
//    aresetn_intf
//    aclken_intf
//    S_AXIS_PHASE
//    M_AXIS_DOUT

// The following must be inserted into your Verilog file for this
// core to be instantiated. Change the instance name and port connections
// (in parentheses) to your own signal names.

//----------- Begin Cut here for INSTANTIATION Template ---// INST_TAG
cordic_rotator your_instance_name (
  .aclk(aclk), // input aclk
  .aresetn(aresetn), // input aresetn
  .s_axis_phase_tvalid(s_axis_phase_tvalid), // input s_axis_phase_tvalid
  .s_axis_phase_tready(s_axis_phase_tready), // output s_axis_phase_tready
  .s_axis_phase_tlast(s_axis_phase_tlast), // input s_axis_phase_tlast
  .s_axis_phase_tdata(s_axis_phase_tdata), // input [15 : 0] s_axis_phase_tdata
  .s_axis_cartesian_tvalid(s_axis_cartesian_tvalid), // input s_axis_cartesian_tvalid
  .s_axis_cartesian_tready(s_axis_cartesian_tready), // output s_axis_cartesian_tready
  .s_axis_cartesian_tlast(s_axis_cartesian_tlast), // input s_axis_cartesian_tlast
  .s_axis_cartesian_tdata(s_axis_cartesian_tdata), // input [31 : 0] s_axis_cartesian_tdata
  .m_axis_dout_tvalid(m_axis_dout_tvalid), // output m_axis_dout_tvalid
  .m_axis_dout_tready(m_axis_dout_tready), // input m_axis_dout_tready
  .m_axis_dout_tlast(m_axis_dout_tlast), // output m_axis_dout_tlast
  .m_axis_dout_tdata(m_axis_dout_tdata) // output [31 : 0] m_axis_dout_tdata
);
// INST_TAG_END ------ End INSTANTIATION Template ---------

// You must compile the wrapper file cordic_rotator.v when simulating
// the core, cordic_rotator. When compiling the wrapper file, be sure to
// reference the XilinxCoreLib Verilog simulation library. For detailed
// instructions, please refer to the "CORE Generator Help".