📄 ila_xst_example.v
字号:
//-----------------------------------------------------------------------------
// Copyright (c) 1999-2005 Xilinx Inc. All rights reserved.
//-----------------------------------------------------------------------------
// Title : ILA Core Xilinx XST Usage Example
// Project : ChipScope
//-----------------------------------------------------------------------------
// File : ila_xst_example.v
// Company : Xilinx Inc.
// Created : 2002/03/27
//-----------------------------------------------------------------------------
// Description: Example of how to instantiate the ILA core in a Verilog
// design for use with the Xilinx XST synthesis tool.
//-----------------------------------------------------------------------------
module ila_xst_example
(
);
//-----------------------------------------------------------------
//
// ILA Core wire declarations
//
//-----------------------------------------------------------------
wire [35:0] control;
wire clk;
wire [31:0] data;
wire [0:0] trig0;
//-----------------------------------------------------------------
//
// ILA core instance
//
//-----------------------------------------------------------------
ila i_ila
(
.control(control),
.clk(clk),
.data(data),
.trig0(trig0)
);
endmodule
//-------------------------------------------------------------------
//
// ILA core module declaration
//
//-------------------------------------------------------------------
module ila
(
control,
clk,
data,
trig0
);
input [35:0] control;
input clk;
input [31:0] data;
input [0:0] trig0;
endmodule
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -