当前位置:网站首页>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) //清零信号
);
边栏推荐
- SphereEx Miao Liyao: Database Mesh R&D Practice under Cloud Native Architecture
- [Three sons] C language implements simple three sons
- 【Leetcode】473. Matchsticks to Square
- Arduino 基础语法
- 06-SDRAM :SDRAM控制模块
- Docker实践经验:Docker 上部署 mysql8 主从复制
- IP核:FIFO
- 07-SDRAM :FIFO控制模块
- REST会消失吗?事件驱动架构如何搭建?
- 不了解SynchronousQueue?那ArrayBlockingQueue和LinkedBlockingQueue不会也不知道吧?
猜你喜欢

Zadig 面向开发者的自测联调子环境技术方案详解

Architecture basic concept and nature of architecture

Deliver cloud-native microservices applications with Zadig

零基础如何学习单片机,一位入门者的进阶路径,可参考

电机原理动图合集

12306抢票,极限并发带来的思考?

REST会消失吗?事件驱动架构如何搭建?

cdh6 opens oozieWeb page, Oozie web console is disabled.

Axure tutorial - the new base (small white strongly recommended!!!)

ES中SQL查询详解
随机推荐
@Transactional 注解使用详解
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~
Several interview questions about golang concurrency
解析正则表达式的底层实现原理
Arduino 基础语法
Keepalived 高可用的三种路由方案
thinkphp漏洞总结
中缀转后缀、前缀表达式快速解决办法
【无标题】
如何优雅的消除系统重复代码
在CentOS下安装MySQL
【加密周报】经济衰退在加息气氛中蔓延 美联储“放手一搏”?盘点上周加密市场发生的重大事件
多御安全浏览器android版更新至1.7,改进加密协议
easy-excel 解决百万数据导入导出,性能很强
async和await用法介绍
检查 Oracle 版本的 7 种方法
很多人喜欢用多御安全浏览器,竟是因为这些原因
学习笔记:机器学习之回归
SphereEx苗立尧:云原生架构下的Database Mesh研发实践
OpenCV DNN blogFromImage() detailed explanation