摘要: module textinsert #( parameter DW = 32, parameter NAME = "test.txt" ) ( input logic clk , input logic en , input logic stop , input logic [DW-1:0] dat 阅读全文
posted @ 2023-12-19 11:25 AdriftCore 阅读(43) 评论(0) 推荐(1) 编辑
摘要: set bitfile "/root/x.bit" open_hw_manager connect_hw_server -url localhost:3121 open_hw_target [lindex [get_hw_targets] 0] current_hw_device [lindex [ 阅读全文
posted @ 2023-12-14 18:38 AdriftCore 阅读(52) 评论(0) 推荐(0) 编辑
摘要: Options Description +all Dump all signals including memory, MDA, packed array, structure, union, power-related, and packed structure +mda Dump all mem 阅读全文
posted @ 2023-11-04 15:36 AdriftCore 阅读(412) 评论(0) 推荐(0) 编辑
摘要: { // Place your snippets for verilog here. Each snippet is defined under a snippet name and has a prefix, body and // description. The prefix is what 阅读全文
posted @ 2023-10-19 16:07 AdriftCore 阅读(113) 评论(0) 推荐(0) 编辑
摘要: sudo apt-get install virtualbox-guest-x11 sudo VBoxClient --clipboard 阅读全文
posted @ 2023-09-20 14:46 AdriftCore 阅读(261) 评论(0) 推荐(0) 编辑
摘要: ./tb_test.sh verdi -f filelist.f -ssf *.fsdb & 阅读全文
posted @ 2023-09-17 17:20 AdriftCore 阅读(164) 评论(0) 推荐(0) 编辑
摘要: # 一、OSI七层模型 MAC属于七层模型中的数据链路层(DATA LINK) ![](https://img2023.cnblogs.com/blog/1467537/202305/1467537-20230526113839699-1053756194.png) # 二、MAC层 包格式 ![] 阅读全文
posted @ 2023-05-26 11:36 AdriftCore 阅读(78) 评论(0) 推荐(1) 编辑
摘要: APP和AXI的吞吐率一致 APP在时序上比AXI简洁 在多主机时,AXI的稳定性、效率性比APP高,AXI有自己的一套仲裁逻辑,而APP没有多主机仲裁逻辑,需要自己写且自己写的仲裁逻辑可能会出现时序问题,而AXI的仲裁及握手逻辑是经过验证的所以稳定性比APP高 如果单对单通信,可以使用APP 如果 阅读全文
posted @ 2023-01-29 17:51 AdriftCore 阅读(226) 评论(0) 推荐(1) 编辑
摘要: 转载:https://blog.csdn.net/weixin_46062412/article/details/125299437 Quartus 对这种情况的处理是增加约束,共有2种情况: a, 需要保留的信号类型是 wire 在定义的时候在后面增加/* synthesis keep */。 例 阅读全文
posted @ 2022-11-17 11:09 AdriftCore 阅读(1078) 评论(0) 推荐(0) 编辑
摘要: 复制 将源文件复制到当前文件夹 cp [源文件] ./ 将源文件夹复制到当前文件夹 cp -R [源文件] ./ 解压 .tar 解包:tar xvf FileName.tar 打包:tar cvf FileName.tar DirName (注:tar是打包,不是压缩!) .gz 解压1:gunz 阅读全文
posted @ 2022-10-14 14:05 AdriftCore 阅读(29) 评论(0) 推荐(0) 编辑