promach
Advanced Member level 4
- Joined
- Feb 22, 2016
- Messages
- 1,202
- Helped
- 2
- Reputation
- 4
- Reaction score
- 5
- Trophy points
- 1,318
- Activity points
- 11,643
I tried the following setting, but the error still persists.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
///////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2021 Xilinx, Inc.
// All Rights Reserved
///////////////////////////////////////////////////////////////////////////////
// ____ ____
// / /\/ /
// /___/ \ / Vendor : Xilinx
// \ \ \/ Version : 14.7
// \ \ Application: Xilinx CORE Generator
// / / Filename : chipscope_vio.v
// /___/ /\ Timestamp : Wed Apr 28 15:34:04 +08 2021
// \ \ / \
// \___\/\___\
//
// Design Name: Verilog Synthesis Wrapper
///////////////////////////////////////////////////////////////////////////////
// This wrapper is used to integrate with Project Navigator and PlanAhead
`timescale 1ns/1ps
module chipscope_vio(
CONTROL,
CLK,
ASYNC_IN,
ASYNC_OUT,
SYNC_IN,
SYNC_OUT) /* synthesis syn_black_box syn_noprune=1 */;
inout [35 : 0] CONTROL;
input CLK;
input [15 : 0] ASYNC_IN;
output [15 : 0] ASYNC_OUT;
input [15 : 0] SYNC_IN;
output [15 : 0] SYNC_OUT;
endmodule
From what source you get that statement?it seems that VIO core could only capture maximum 4 signals ?
ug750 tells that ILA core can only capture 1 signal with multiple triggers? Where?
Besides what niciki has said, why are you pointing to a document that describes how to use the ILA inserter, you are instantiating the ILA and ICON?it seems that VIO core could only capture maximum 4 signals ?
and ILA core could only capture 1 signal with multiple triggers ?