当前位置:网站首页>IP Core: FIFO
IP Core: FIFO
2022-08-02 00:15:00 【Liu Yan son】
前言
Instantiate thisFIFO的IPnuclear forSDRAM中读写FIFO
正文
Only the following are configured3部分,其余保持默认即可



配置完成后,You can go to the folder to find the instantiation file,将其复制到顶层模块中

//------------- wr_fifo_data -------------
fifo_r_w wr_fifo_data(
//用户接口
.wrclk (wr_fifo_wr_clk ), //写时钟
.wrreq (wr_fifo_wr_req ), //写请求
.data (wr_fifo_wr_data), //写数据
//SDRAM接口
.rdclk (sdram_clk ), //读时钟
.rdreq (sdram_wr_ack ), //读请求
.q (sdram_data_in ), //读数据
.rdusedw (wr_fifo_num ), //FIFO中的数据量
.wrusedw ( ),
.aclr (~sdram_rst_n || wr_fifo_rst) //清零信号
);
//------------- rd_fifo_data -------------
fifo_r_w rd_fifo_data(
//sdram接口
.wrclk (sdram_clk ), //写时钟
.wrreq (sdram_rd_ack ), //写请求
.data (sdram_data_out ), //写数据
//用户接口
.rdclk (rd_fifo_rd_clk ), //读时钟
.rdreq (rd_fifo_rd_req ), //读请求
.q (rd_fifo_rd_data), //读数据
.rdusedw ( ),
.wrusedw (rd_fifo_num ), //FIFO中的数据量
.aclr (~sdram_rst_n || rd_fifo_rst) //清零信号
);
边栏推荐
猜你喜欢
随机推荐
contentEditable属性
字节跳动面试官:请你实现一个大文件上传和断点续传
How to get the best power efficiency in Windows 11?
短视频SEO优化教程 自媒体SEO优化技巧方法
洞见云原生微服务及微服务架构浅析
Flink Yarn Per Job - CliFrontend
正则表达式
20220725 Information update
@Transactional注解在类上还是接口上使用,哪种方式更好?
@Resource和@Autowired的区别
Excel导入和导出
Axure tutorial - the new base (small white strongly recommended!!!)
ROS 动态参数
IP核:FIFO
【Leetcode】478. Generate Random Point in a Circle(配数学证明)
With a monthly salary of 12K, the butterfly changed to a new one and moved forward bravely - she doubled her monthly salary through the career change test~
22.支持向量机—高斯核函数
Detailed explanation of Zadig's self-testing and tuning environment technical solution for developers
电机原理动图合集
【MySQL系列】MySQL数据库基础









