摘要: #报错信息 [Chipscope 16-302] Could not generate core for dbg_hub. Aborting IP Generation operaion. The current Vivado temporary directory path, 'C:/Users/ 阅读全文
posted @ 2023-04-15 22:16 心比天高xzh 阅读(640) 评论(0) 推荐(0)
摘要: #新建ip核心 #ip核设置 #调用ip核 根据模板在.v文件中调用ILA ip核 #编译界面 #使用界面 #方法二 也可以通过vivado界面添加,使用比较麻烦,参考视频 阅读全文
posted @ 2023-04-15 22:16 心比天高xzh 阅读(197) 评论(0) 推荐(0)
摘要: #source code module key_beep( input sys_clk, input sys_rst_n, input key, output reg beep ); reg [19:0]cnt; reg key_delay_20ms; reg key_delay_20ms_last 阅读全文
posted @ 2023-04-15 18:16 心比天高xzh 阅读(20) 评论(0) 推荐(0)
摘要: #source code module key_led( input sys_clk , //系统时钟 input sys_rst_n, //系统复位,低电平有效 input [1:0] key, //按键 output [1:0] led //LED灯 ); reg [25:0] cnt ; wi 阅读全文
posted @ 2023-04-15 18:13 心比天高xzh 阅读(20) 评论(0) 推荐(0)
摘要: #source code module led( input sys_clk , //系统时钟 input sys_rst_n, //系统复位,低电平有效 output [1:0] led //LED灯 ); //reg define reg [25:0] cnt ; //************* 阅读全文
posted @ 2023-04-15 18:10 心比天高xzh 阅读(23) 评论(0) 推荐(0)
摘要: module key_debounce( input sys_clk , input sys_rst_n , input key , //外部输入的按键值 output reg key_value , //消抖后的按键值 output reg key_flag //消抖后的按键值的效标志 ); // 阅读全文
posted @ 2023-04-15 18:04 心比天高xzh 阅读(376) 评论(0) 推荐(0)