⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vio_xst_example.v

📁 Clock data recovery .........good example
💻 V
字号:
//-----------------------------------------------------------------------------
// Copyright (c) 1999-2006 Xilinx Inc.  All rights reserved.
//-----------------------------------------------------------------------------
// Title      : Virtual I/O Core Xilinx XST Usage Example
// Project    : ChipScope
//-----------------------------------------------------------------------------
// File       : vio_xst_example.v
// Company    : Xilinx Inc.
// Created    : 2002/11/26
//-----------------------------------------------------------------------------
// Description: Example of how to instantiate the VIO core in a Verilog 
//              design for use with the Xilinx XST synthesis tool.
//-----------------------------------------------------------------------------

module vio_xst_example
  (
  );


  //-----------------------------------------------------------------
  //
  //  VIO Core wire declarations
  //
  //-----------------------------------------------------------------
  wire [35:0] control;
  wire [1:0] async_in;
  wire [63:0] async_out;


  //-----------------------------------------------------------------
  //
  //  VIO core instance
  //
  //-----------------------------------------------------------------
  vio i_vio
    (
      .control(control),
      .async_in(async_in),
      .async_out(async_out)
    );


endmodule


//-------------------------------------------------------------------
//
//  VIO core module declaration
//
//-------------------------------------------------------------------
module vio
  (
    control,
    async_in,
    async_out
  );
  input  [35:0] control;
  input  [1:0] async_in;
  output [63:0] async_out;
endmodule

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -