Intel® Quartus® Prime Standard Edition用户指南: 调试工具

ID 683552
日期 9/24/2018
Public
文档目录

2.8.9. JTAG Debug服务

JTAG Debug服务使您能够检查您设计中时钟和复位的状态。

以下是一个JTAG Debug设计流程示例。

  1. 识别可用的JTAG Debug路径:
    get_service_paths jtag_debug
  2. 选择一条JTAG Debug路径:
    set jtag_debug_path [lindex [get_service_paths jtag_debug] 0]
  3. 声明一个JTAG Debug服务路径:
     set claim_jtag_path [claim_service jtag_debug$jtag_debug_path mylib]
  4. 运行JTAG Debug服务:
    jtag_debug_reset_system $claim_jtag_path
    jtag_debug_loop $claim_jtag_path [list 1 2 3 4 5]