2020年8月21日

摘要: 在PCIe程序设计中,XDMA有两个AXI接口,分别是AXI4 Master类型接口和AXI-Lite Master类型接口,可通过M_AXI接口对数据进行读取操作。 封装流程为: 创建工程, 第二步:选择Create AXI4 Perpheral,点击next 设置保存路径,也可默认 设置要封装的 阅读全文
posted @ 2020-08-21 10:39 🐗 阅读(661) 评论(0) 推荐(0)
摘要: module lfsr( input clk, input rst_n, output o1, output [3:0] o4 ); reg [3:0]tmp; always@(posedge clk or negedge rst_n) if(~rst_n) tmp<=4'b1111; else b 阅读全文
posted @ 2020-08-21 09:17 &#128023; 阅读(322) 评论(0) 推荐(0)

导航